2015-09-25 16:38:43 -06:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="admin user">
|
2017-03-15 16:39:38 -06:00
|
|
|
{{template "admin/navbar" .}}
|
2015-09-25 17:45:44 -06:00
|
|
|
<div class="ui container">
|
2017-03-15 16:39:38 -06:00
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "admin.repos.repo_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-23 19:03:42 -06:00
|
|
|
{{template "admin/repo/search" .}}
|
2017-03-15 16:39:38 -06:00
|
|
|
</div>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>{{.i18n.Tr "admin.repos.owner"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.repos.name"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.repos.private"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.repos.watches"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.repos.stars"}}</th>
|
2018-05-23 19:03:42 -06:00
|
|
|
<th>{{.i18n.Tr "admin.repos.forks"}}</th>
|
2017-03-15 16:39:38 -06:00
|
|
|
<th>{{.i18n.Tr "admin.repos.issues"}}</th>
|
2017-04-11 07:30:15 -06:00
|
|
|
<th>{{.i18n.Tr "admin.repos.size"}}</th>
|
2017-03-15 16:39:38 -06:00
|
|
|
<th>{{.i18n.Tr "admin.users.created"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.notices.op"}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range .Repos}}
|
|
|
|
<tr>
|
|
|
|
<td>{{.ID}}</td>
|
2019-02-18 09:00:27 -07:00
|
|
|
<td>
|
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
2020-02-11 10:02:41 -07:00
|
|
|
<span class="text gold">{{svg "octicon-lock" 16}}</span>
|
2019-02-18 09:00:27 -07:00
|
|
|
{{end}}
|
|
|
|
</td>
|
2017-03-15 16:39:38 -06:00
|
|
|
<td><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td>
|
|
|
|
<td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td>
|
|
|
|
<td>{{.NumWatches}}</td>
|
|
|
|
<td>{{.NumStars}}</td>
|
2018-05-23 19:03:42 -06:00
|
|
|
<td>{{.NumForks}}</td>
|
2017-03-15 16:39:38 -06:00
|
|
|
<td>{{.NumIssues}}</td>
|
2017-04-11 07:30:15 -06:00
|
|
|
<td>{{SizeFmt .Size}}</td>
|
2017-12-10 21:37:04 -07:00
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2019-04-19 22:15:19 -06:00
|
|
|
<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Paginater.Current}}&sort={{$.SortType}}" data-id="{{.ID}}" data-name="{{.Name}}"><i class="trash icon text red"></i></a></td>
|
2017-03-15 16:39:38 -06:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-25 17:45:44 -06:00
|
|
|
</div>
|
2017-03-15 16:39:38 -06:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-09-25 17:45:44 -06:00
|
|
|
</div>
|
2014-08-29 06:50:43 -06:00
|
|
|
</div>
|
2015-12-05 15:39:29 -07:00
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="ui icon header">
|
|
|
|
<i class="trash icon"></i>
|
|
|
|
{{.i18n.Tr "repo.settings.delete"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "repo.settings.delete_desc"}}</p>
|
2019-01-06 13:08:25 -07:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_2" `<span class="name"></span>` | Safe}}<br>
|
2016-07-23 06:42:46 -06:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2015-12-05 15:39:29 -07:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "base/footer" .}}
|