2015-09-25 18:38:43 -04:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="admin user">
|
2017-03-15 18:39:38 -04:00
|
|
|
{{template "admin/navbar" .}}
|
2015-09-25 19:45:44 -04: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.repos.repo_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-23 21:03:42 -04:00
|
|
|
{{template "admin/repo/search" .}}
|
2017-03-15 18:39:38 -04: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 21:03:42 -04:00
|
|
|
<th>{{.i18n.Tr "admin.repos.forks"}}</th>
|
2017-03-15 18:39:38 -04:00
|
|
|
<th>{{.i18n.Tr "admin.repos.issues"}}</th>
|
2017-04-11 09:30:15 -04:00
|
|
|
<th>{{.i18n.Tr "admin.repos.size"}}</th>
|
2017-03-15 18:39:38 -04: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 11:00:27 -05:00
|
|
|
<td>
|
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="text gold"><i class="octicon octicon-lock"></i></span>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
2017-03-15 18:39:38 -04: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 21:03:42 -04:00
|
|
|
<td>{{.NumForks}}</td>
|
2017-03-15 18:39:38 -04:00
|
|
|
<td>{{.NumIssues}}</td>
|
2017-04-11 09:30:15 -04:00
|
|
|
<td>{{SizeFmt .Size}}</td>
|
2017-12-10 23:37:04 -05:00
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2019-04-20 00:15:19 -04: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 18:39:38 -04:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-25 19:45:44 -04:00
|
|
|
</div>
|
2017-03-15 18:39:38 -04:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-09-25 19:45:44 -04:00
|
|
|
</div>
|
2014-08-29 08:50:43 -04:00
|
|
|
</div>
|
2015-12-05 17:39:29 -05:00
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
2015-12-07 17:30:52 -05: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 15:08:25 -05:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_2" `<span class="name"></span>` | Safe}}<br>
|
2016-07-23 08:42:46 -04:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2015-12-05 17:39:29 -05:00
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "base/footer" .}}
|