2014-08-11 05:11:18 +02:00
|
|
|
{{template "ng/base/head" .}}
|
|
|
|
{{template "ng/base/header" .}}
|
|
|
|
<div class="org-header" id="org-home-header">
|
|
|
|
<div class="container clear">
|
|
|
|
<img class="avatar-100 left" src="{{.Org.AvatarLink}}?s=140"/>
|
|
|
|
<div id="org-home-header-info">
|
2014-08-16 10:21:17 +02:00
|
|
|
<h2>
|
|
|
|
{{.Org.FullName}}
|
|
|
|
{{if .IsOrganizationOwner}}<a class="text-grey" href="{{.OrgLink}}/settings"><span class="octicon octicon-gear"></span></a>{{end}}
|
|
|
|
</h2>
|
2014-08-11 05:11:18 +02:00
|
|
|
{{if .Org.Description}}<p>{{.Org.Description}}</p>{{end}}
|
|
|
|
<ul class="text-grey">
|
|
|
|
{{if .Org.Location}}<li><span class="octicon octicon-location"></span> <span>{{.Org.Location}}</span></li>{{end}}
|
|
|
|
{{if .Org.Website}}<li><span class="octicon octicon-link"></span> <a target="_blank" href="{{.Org.Website}}">{{.Org.Website}}</a></li>{{end}}
|
|
|
|
{{if .Org.Email}}<li><span class="octicon octicon-mail"></span> <a href="mailto:{{.Org.Email}}">{{.Org.Email}}</a></li>{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-06-28 21:43:25 +02:00
|
|
|
</div>
|
2014-08-11 05:11:18 +02:00
|
|
|
<div class="container">
|
2014-08-24 15:09:05 +02:00
|
|
|
{{$isMember := .Org.IsOrgMember $.SignedUser.Id}}
|
2014-08-11 05:11:18 +02:00
|
|
|
<div id="org-home-repo-list" class="left grid-2-3">
|
|
|
|
<div class="clear">
|
2014-08-16 10:21:17 +02:00
|
|
|
{{if .IsOrganizationOwner}}
|
2014-09-14 19:35:22 +02:00
|
|
|
<a class="btn btn-green btn-large btn-link btn-radius right" href="{{AppRootSubUrl}}/repo/create?org={{.Org.Id}}"><i class="octicon octicon-repo-create"></i> {{.i18n.Tr "new_repo"}}</a>
|
2014-08-15 12:29:41 +02:00
|
|
|
{{end}}
|
2014-06-28 21:43:25 +02:00
|
|
|
</div>
|
2014-08-11 05:11:18 +02:00
|
|
|
<div id="org-repo-list">
|
|
|
|
{{range .Repos}}
|
2014-08-24 15:09:05 +02:00
|
|
|
{{if or $isMember (not .IsPrivate)}}
|
2014-08-11 05:11:18 +02:00
|
|
|
<div class="org-repo-item">
|
|
|
|
<ul class="org-repo-status right">
|
|
|
|
<li><i class="octicon octicon-star"></i> {{.NumStars}}</li>
|
|
|
|
<li><i class="octicon octicon-git-branch"></i> {{.NumForks}}</li>
|
|
|
|
</ul>
|
2014-09-14 19:35:22 +02:00
|
|
|
<h2><a href="{{AppRootSubUrl}}/{{$.Org.Name}}/{{.Name}}">{{.Name}}</a></h2>
|
2014-08-11 05:11:18 +02:00
|
|
|
<p class="org-repo-description">{{.Description}}</p>
|
|
|
|
<p class="org-repo-updated">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p>
|
|
|
|
</div>
|
2014-08-24 15:09:05 +02:00
|
|
|
{{end}}
|
2014-08-11 05:11:18 +02:00
|
|
|
{{end}}
|
2014-06-28 21:43:25 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-08-11 05:11:18 +02:00
|
|
|
<div class="grid-1-3 right">
|
|
|
|
<div class="org-sidebar">
|
|
|
|
<div class="panel panel-radius">
|
|
|
|
<div class="panel-header">
|
2014-08-24 15:09:05 +02:00
|
|
|
{{if $isMember}}
|
2014-09-14 19:35:22 +02:00
|
|
|
<a class="text-grey right" href="{{AppRootSubUrl}}/org/{{.Org.LowerName}}/members"><strong>{{.Org.NumMembers}}</strong><span class="octicon octicon-chevron-right"></span></a>
|
2014-08-24 15:09:05 +02:00
|
|
|
{{end}}
|
2014-08-11 05:11:18 +02:00
|
|
|
<strong>{{.i18n.Tr "org.people"}}</strong>
|
|
|
|
</div>
|
2014-08-16 10:21:17 +02:00
|
|
|
<div class="panel-body member-avatar-group">
|
2014-08-11 05:11:18 +02:00
|
|
|
{{range .Members}}
|
2014-08-24 15:09:05 +02:00
|
|
|
{{if or $isMember (.IsPublicMember $.Org.Id)}}
|
2014-09-14 19:35:22 +02:00
|
|
|
<a href="{{AppRootSubUrl}}/{{.Name}}" title="{{.Name}}"><img src="{{.AvatarLink}}"></a>
|
2014-08-24 15:09:05 +02:00
|
|
|
{{end}}
|
2014-08-11 05:11:18 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-08-16 10:21:17 +02:00
|
|
|
{{if .IsOrganizationOwner}}
|
2014-08-11 05:11:18 +02:00
|
|
|
<div class="panel-footer">
|
2014-09-14 19:35:22 +02:00
|
|
|
<a class="btn btn-medium btn-blue btn-link btn-radius" href="{{AppRootSubUrl}}/org/{{.Org.LowerName}}/invitations/new">{{.i18n.Tr "org.invite_someone"}}</a>
|
2014-08-11 05:11:18 +02:00
|
|
|
</div>
|
2014-08-15 12:29:41 +02:00
|
|
|
{{end}}
|
2014-08-11 05:11:18 +02:00
|
|
|
</div>
|
2014-08-24 15:09:05 +02:00
|
|
|
{{if $isMember}}
|
2014-08-11 05:11:18 +02:00
|
|
|
<br>
|
|
|
|
<div class="panel panel-radius">
|
|
|
|
<div class="panel-header">
|
2014-09-14 19:35:22 +02:00
|
|
|
<a class="text-grey right" href="{{AppRootSubUrl}}/org/{{.Org.LowerName}}/teams"><strong>{{.Org.NumTeams}}</strong><span class="octicon octicon-chevron-right"></span></a>
|
2014-08-11 05:11:18 +02:00
|
|
|
<strong>{{.i18n.Tr "org.teams"}}</strong>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body" id="org-home-team-list">
|
|
|
|
<ul>
|
|
|
|
{{range .Teams}}
|
|
|
|
<li>
|
2014-09-14 19:35:22 +02:00
|
|
|
<a class="text-black" href="{{AppRootSubUrl}}/org/{{$.Org.LowerName}}/teams/{{.LowerName}}"><strong class="team-name">{{.Name}}</strong></a>
|
2014-08-11 05:11:18 +02:00
|
|
|
<p class="team-meta">{{.NumMembers}} {{$.i18n.Tr "org.lower_members"}} · {{.NumRepos}} {{$.i18n.Tr "org.lower_repositories"}}</p>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2014-08-15 12:29:41 +02:00
|
|
|
{{if .IsOrganizationOwner}}
|
2014-08-11 05:11:18 +02:00
|
|
|
<div class="panel-footer">
|
2014-09-14 19:35:22 +02:00
|
|
|
<a class="btn btn-medium btn-blue btn-link btn-radius" href="{{AppRootSubUrl}}/org/{{$.Org.LowerName}}/teams/new">{{.i18n.Tr "org.create_new_team"}}</a>
|
2014-08-11 05:11:18 +02:00
|
|
|
</div>
|
2014-08-15 12:29:41 +02:00
|
|
|
{{end}}
|
2014-08-11 05:11:18 +02:00
|
|
|
</div>
|
2014-08-24 15:09:05 +02:00
|
|
|
{{end}}
|
2014-08-11 05:11:18 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-06-28 21:43:25 +02:00
|
|
|
</div>
|
2014-08-11 05:11:18 +02:00
|
|
|
{{template "ng/base/footer" .}}
|