2015-09-25 13:54:52 -04:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="admin user">
|
2017-03-15 18:39:38 -04:00
|
|
|
{{template "admin/navbar" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="ui container">
|
2017-03-15 18:39:38 -04:00
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "admin.orgs.org_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
|
2017-05-18 20:20:41 -04:00
|
|
|
<div class="ui right">
|
|
|
|
<a class="ui black tiny button" href="{{AppSubUrl}}/org/create">{{.i18n.Tr "admin.orgs.new_orga"}}</a>
|
|
|
|
</div>
|
2017-03-15 18:39:38 -04:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "admin/base/search" .}}
|
|
|
|
</div>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>{{.i18n.Tr "admin.orgs.name"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.orgs.teams"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.orgs.members"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.users.repos"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.users.created"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.users.edit"}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range .Users}}
|
|
|
|
<tr>
|
|
|
|
<td>{{.ID}}</td>
|
2019-02-18 11:00:27 -05:00
|
|
|
<td>
|
|
|
|
<a href="{{.HomeLink}}">{{.Name}}</a>
|
|
|
|
{{if .Visibility.IsPrivate}}
|
|
|
|
<span class="text gold"><i class="octicon octicon-lock"></i></span>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
2017-03-15 18:39:38 -04:00
|
|
|
<td>{{.NumTeams}}</td>
|
|
|
|
<td>{{.NumMembers}}</td>
|
|
|
|
<td>{{.NumRepos}}</td>
|
2017-12-10 23:37:04 -05:00
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2017-03-15 18:39:38 -04:00
|
|
|
<td><a href="{{AppSubUrl}}/org/{{.Name}}/settings"><i class="fa fa-pencil-square-o"></i></a></td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2017-03-15 18:39:38 -04:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2014-08-29 08:50:43 -04:00
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "base/footer" .}}
|