2015-09-25 23:24:52 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="admin user">
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
{{template "admin/navbar" .}}
|
|
|
|
<div class="twelve wide column content">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "admin.orgs.org_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
|
|
|
|
</h4>
|
2016-03-12 02:03:12 +05:30
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "admin/base/search" .}}
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped table">
|
2015-09-26 05:15:44 +05:30
|
|
|
<thead>
|
2015-12-08 04:00:52 +05:30
|
|
|
<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>
|
2015-09-26 05:15:44 +05:30
|
|
|
<th>{{.i18n.Tr "admin.users.created"}}</th>
|
2015-12-13 02:17:59 +05:30
|
|
|
<th>{{.i18n.Tr "admin.users.edit"}}</th>
|
2015-12-08 04:00:52 +05:30
|
|
|
</tr>
|
2015-09-26 05:15:44 +05:30
|
|
|
</thead>
|
|
|
|
<tbody>
|
2016-03-12 02:03:12 +05:30
|
|
|
{{range .Users}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<tr>
|
2016-07-23 22:38:22 +05:30
|
|
|
<td>{{.ID}}</td>
|
2015-12-08 04:00:52 +05:30
|
|
|
<td><a href="{{.HomeLink}}">{{.Name}}</a></td>
|
|
|
|
<td>{{.NumTeams}}</td>
|
|
|
|
<td>{{.NumMembers}}</td>
|
|
|
|
<td>{{.NumRepos}}</td>
|
|
|
|
<td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td>
|
2015-12-13 02:17:59 +05:30
|
|
|
<td><a href="{{AppSubUrl}}/org/{{.Name}}/settings"><i class="fa fa-pencil-square-o"></i></a></td>
|
2015-12-08 04:00:52 +05:30
|
|
|
</tr>
|
|
|
|
{{end}}
|
2015-09-26 05:15:44 +05:30
|
|
|
</tbody>
|
2015-12-08 04:00:52 +05:30
|
|
|
</table>
|
2015-09-26 05:15:44 +05:30
|
|
|
</div>
|
2015-09-25 23:24:52 +05:30
|
|
|
|
2016-11-07 16:14:49 +05:30
|
|
|
{{template "base/paginate" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-08-29 18:20:43 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|