2015-09-26 00:38:43 +02:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="admin user">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{template "admin/navbar" .}}
|
2015-09-26 01:45:44 +02:00
|
|
|
<div class="ui container">
|
2017-03-15 23:39:38 +01: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-24 03:03:42 +02:00
|
|
|
{{template "admin/repo/search" .}}
|
2017-03-15 23:39:38 +01: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-24 03:03:42 +02:00
|
|
|
<th>{{.i18n.Tr "admin.repos.forks"}}</th>
|
2017-03-15 23:39:38 +01:00
|
|
|
<th>{{.i18n.Tr "admin.repos.issues"}}</th>
|
2017-04-11 15:30:15 +02:00
|
|
|
<th>{{.i18n.Tr "admin.repos.size"}}</th>
|
2017-03-15 23:39:38 +01: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 17:00:27 +01: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 23:39:38 +01: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-24 03:03:42 +02:00
|
|
|
<td>{{.NumForks}}</td>
|
2017-03-15 23:39:38 +01:00
|
|
|
<td>{{.NumIssues}}</td>
|
2017-04-11 15:30:15 +02:00
|
|
|
<td>{{SizeFmt .Size}}</td>
|
2017-12-11 05:37:04 +01:00
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2019-04-20 06:15:19 +02: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 23:39:38 +01:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-26 01:45:44 +02:00
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-09-26 01:45:44 +02:00
|
|
|
</div>
|
2014-08-29 14:50:43 +02:00
|
|
|
</div>
|
2015-12-05 23:39:29 +01:00
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
2015-12-07 23:30:52 +01: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 21:08:25 +01:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_2" `<span class="name"></span>` | Safe}}<br>
|
2016-07-23 14:42:46 +02:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2015-12-05 23:39:29 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|