2015-09-26 00:38:43 +02:00
{{template "base/head" .}}
<div class="admin user">
2017-03-15 22:39:38 +00:00
{{template "admin/navbar" .}}
2015-09-25 19:45:44 -04:00
<div class="ui container">
2017-03-15 22:39:38 +00: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 04:03:42 +03:00
{{template "admin/repo/search" .}}
2017-03-15 22:39:38 +00: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 04:03:42 +03:00
<th>{{.i18n.Tr "admin.repos.forks"}}</th>
2017-03-15 22:39:38 +00: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 22:39:38 +00:00
<th>{{.i18n.Tr "admin.users.created"}}</th>
<th>{{.i18n.Tr "admin.notices.op"}}</th>
</tr>
</thead>
<tbody>
{{range .Repos}}
<tr>
<td>{{.ID}}</td>
<td><a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a></td>
<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 04:03:42 +03:00
<td>{{.NumForks}}</td>
2017-03-15 22:39:38 +00:00
<td>{{.NumIssues}}</td>
2017-04-11 15:30:15 +02:00
<td>{{SizeFmt .Size}}</td>
2017-12-11 12:37:04 +08:00
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
2019-01-07 01:38:25 +05:30
<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}" data-id="{{.ID}}" data-name="{{.Name}}"><i class="trash icon text red"></i></a></td>
2017-03-15 22:39:38 +00:00
</tr>
{{end}}
</tbody>
</table>
2015-09-25 19:45:44 -04:00
</div>
2017-03-15 22:39:38 +00:00
{{template "base/paginate" .}}
2015-09-25 19:45:44 -04:00
</div>
2014-08-29 20:50:43 +08:00
</div>
2015-12-05 17:39:29 -05: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-07 01:38:25 +05:30
{{.i18n.Tr "repo.settings.delete_notices_2" `<span class="name"></span>` | Safe}}<br>
2016-07-23 20:42:46 +08: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 17:39:29 -05:00
</div>
2015-12-07 23:30:52 +01:00
{{template "base/footer" .}}