mirror of https://github.com/gogits/gogs.git
Antoine GIRARD
9 years ago
5 changed files with 92 additions and 68 deletions
@ -1,58 +1,68 @@ |
|||||||
{{template "ng/base/head" .}} |
{{template "base/head" .}} |
||||||
{{template "ng/base/header" .}} |
<div class="admin user"> |
||||||
<div id="admin-wrapper"> |
<div class="ui container"> |
||||||
<div id="setting-wrapper" class="main-wrapper"> |
<div class="ui grid"> |
||||||
<div id="admin-setting" class="container clear"> |
{{template "admin/navbar" .}} |
||||||
{{template "admin/nav" .}} |
<div class="twelve wide column content"> |
||||||
<div class="grid-4-5 left"> |
{{template "base/alert" .}} |
||||||
<div class="setting-content"> |
<h4 class="ui top attached header"> |
||||||
{{template "ng/base/alert" .}} |
{{.i18n.Tr "admin.orgs.org_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}}) |
||||||
<div id="setting-content"> |
</h4> |
||||||
<div class="panel panel-radius"> |
<div class="ui attached table segment"> |
||||||
<div class="panel-header"> |
<table class="ui very basic striped table"> |
||||||
<strong>{{.i18n.Tr "admin.orgs.org_manage_panel"}}</strong> |
<thead> |
||||||
</div> |
<tr> |
||||||
<div class="panel-body admin-panel"> |
<th>ID</th> |
||||||
<div class="admin-table"> |
<th>{{.i18n.Tr "admin.orgs.name"}}</th> |
||||||
<table class="table table-striped"> |
<th>{{.i18n.Tr "email"}}</th> |
||||||
<thead> |
<th>{{.i18n.Tr "admin.orgs.teams"}}</th> |
||||||
<tr> |
<th>{{.i18n.Tr "admin.orgs.members"}}</th> |
||||||
<th>Id</th> |
<th>{{.i18n.Tr "admin.users.repos"}}</th> |
||||||
<th>{{.i18n.Tr "admin.orgs.name"}}</th> |
<th>{{.i18n.Tr "admin.users.created"}}</th> |
||||||
<th>{{.i18n.Tr "email"}}</th> |
</tr> |
||||||
<th>{{.i18n.Tr "admin.orgs.teams"}}</th> |
</thead> |
||||||
<th>{{.i18n.Tr "admin.orgs.members"}}</th> |
<tbody> |
||||||
<th>{{.i18n.Tr "admin.users.repos"}}</th> |
{{range .Orgs}} |
||||||
<th>{{.i18n.Tr "admin.users.created"}}</th> |
<tr> |
||||||
</tr> |
<td>{{.Id}}</td> |
||||||
</thead> |
<td><a href="{{AppSubUrl}}/org/{{.Name}}">{{.Name}}</a></td> |
||||||
<tbody> |
<td>{{.Email}}</td> |
||||||
{{range .Orgs}} |
<td>{{.NumTeams}}</td> |
||||||
<tr> |
<td>{{.NumMembers}}</td> |
||||||
<td>{{.Id}}</td> |
<td>{{.NumRepos}}</td> |
||||||
<td><a href="{{AppSubUrl}}/org/{{.Name}}">{{.Name}}</a></td> |
<td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td> |
||||||
<td>{{.Email}}</td> |
</tr> |
||||||
<td>{{.NumTeams}}</td> |
{{end}} |
||||||
<td>{{.NumMembers}}</td> |
</tbody> |
||||||
<td>{{.NumRepos}}</td> |
</table> |
||||||
<td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td> |
</div> |
||||||
</tr> |
|
||||||
{{end}} |
{{with .Page}} |
||||||
</tbody> |
{{if gt .TotalPages 1}} |
||||||
</table> |
<div class="center page buttons"> |
||||||
{{if or .LastPageNum .NextPageNum}} |
<div class="ui borderless pagination menu"> |
||||||
<ul class="pagination"> |
<a class="{{if .IsFirst}}disabled{{end}} item" href="{{$.Link}}"><i class="angle double left icon"></i> {{$.i18n.Tr "admin.first_page"}}</a> |
||||||
{{if .LastPageNum}}<li><a class="btn btn-medium btn-gray btn-radius" href="{{AppSubUrl}}/admin/orgs?p={{.LastPageNum}}">« {{.i18n.Tr "admin.prev"}}</a></li>{{end}} |
<a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?page={{.Previous}}"{{end}}> |
||||||
{{if .NextPageNum}}<li><a class="btn btn-medium btn-gray btn-radius" href="{{AppSubUrl}}/admin/orgs?p={{.NextPageNum}}">» {{.i18n.Tr "admin.next"}}</a></li>{{end}} |
<i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} |
||||||
</ul> |
</a> |
||||||
{{end}} |
{{range .Pages}} |
||||||
</div> |
{{if eq .Num -1}} |
||||||
</div> |
<a class="disabled item">...</a> |
||||||
</div> |
{{else}} |
||||||
</div> |
<a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?page={{.Num}}"{{end}}>{{.Num}}</a> |
||||||
</div> |
{{end}} |
||||||
</div> |
{{end}} |
||||||
</div> |
<a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?page={{.Next}}"{{end}}> |
||||||
|
{{$.i18n.Tr "repo.issues.next"}} <i class="icon right arrow"></i> |
||||||
|
</a> |
||||||
|
<a class="{{if .IsLast}}disabled{{end}} item" href="{{$.Link}}?page={{.TotalPages}}">{{$.i18n.Tr "admin.last_page"}} <i class="angle double right icon"></i></a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
{{end}} |
||||||
|
{{end}} |
||||||
|
|
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
{{template "ng/base/footer" .}} |
{{template "base/footer" .}} |
Loading…
Reference in new issue