2015-09-25 22:38:43 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content admin user">
|
2017-03-15 22:39:38 +00:00
|
|
|
{{template "admin/navbar" .}}
|
2015-09-25 23:45:44 +00: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}})
|
2020-09-25 04:09:23 +00:00
|
|
|
<div class="ui right">
|
|
|
|
<a class="ui blue tiny button" href="{{AppSubUrl}}/admin/repos/unadopted">{{.i18n.Tr "admin.repos.unadopted"}}</a>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-24 01:03:42 +00: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>
|
2020-06-24 22:23:05 +00:00
|
|
|
<th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th>
|
2017-03-15 22:39:38 +00:00
|
|
|
<th>{{.i18n.Tr "admin.repos.owner"}}</th>
|
2020-06-24 22:23:05 +00:00
|
|
|
<th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically">
|
|
|
|
{{.i18n.Tr "admin.repos.name"}}
|
|
|
|
{{SortArrow "alphabetically" "reversealphabetically" $.SortType false}}
|
|
|
|
</th>
|
2017-03-15 22:39:38 +00:00
|
|
|
<th>{{.i18n.Tr "admin.repos.watches"}}</th>
|
2020-06-24 22:23:05 +00:00
|
|
|
<th data-sortt-asc="moststars" data-sortt-desc="feweststars">
|
|
|
|
{{.i18n.Tr "admin.repos.stars"}}
|
|
|
|
{{SortArrow "moststars" "feweststars" $.SortType false}}
|
|
|
|
</th>
|
|
|
|
<th data-sortt-asc="mostforks" data-sortt-desc="fewestforks">
|
|
|
|
{{.i18n.Tr "admin.repos.forks"}}
|
|
|
|
{{SortArrow "mostforks" "fewestforks" $.SortType false}}
|
|
|
|
</th>
|
2017-03-15 22:39:38 +00:00
|
|
|
<th>{{.i18n.Tr "admin.repos.issues"}}</th>
|
2020-06-24 22:23:05 +00:00
|
|
|
<th data-sortt-asc="size" data-sortt-desc="reversesize">
|
|
|
|
{{.i18n.Tr "admin.repos.size"}}
|
|
|
|
{{SortArrow "size" "reversesize" $.SortType false}}
|
|
|
|
</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>
|
2019-02-18 16:00:27 +00:00
|
|
|
<td>
|
2021-11-16 18:18:25 +00:00
|
|
|
<a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>
|
2019-02-18 16:00:27 +00:00
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
2020-09-11 20:19:00 +00:00
|
|
|
<span class="text gold">{{svg "octicon-lock"}}</span>
|
2019-02-18 16:00:27 +00:00
|
|
|
{{end}}
|
|
|
|
</td>
|
2021-01-04 12:18:12 +00:00
|
|
|
<td>
|
2021-11-16 18:18:25 +00:00
|
|
|
<a href="{{.Link}}">{{.Name}}</a>
|
2021-04-14 13:33:22 +00:00
|
|
|
{{if .IsArchived}}
|
|
|
|
<span class="ui basic mini label">{{$.i18n.Tr "repo.desc.archived"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{if .IsTemplate}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic mini label">{{$.i18n.Tr "repo.desc.private_template"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic mini label">{{$.i18n.Tr "repo.desc.internal_template"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic mini label">{{$.i18n.Tr "repo.desc.private"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic mini label">{{$.i18n.Tr "repo.desc.internal"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if .IsFork}}
|
|
|
|
{{svg "octicon-repo-forked"}}
|
|
|
|
{{else if .IsMirror}}
|
|
|
|
{{svg "octicon-mirror"}}
|
2021-01-04 12:18:12 +00:00
|
|
|
{{end}}
|
|
|
|
</td>
|
2017-03-15 22:39:38 +00:00
|
|
|
<td>{{.NumWatches}}</td>
|
|
|
|
<td>{{.NumStars}}</td>
|
2018-05-24 01:03:42 +00:00
|
|
|
<td>{{.NumForks}}</td>
|
2017-03-15 22:39:38 +00:00
|
|
|
<td>{{.NumIssues}}</td>
|
2021-12-03 03:33:34 +00:00
|
|
|
<td>{{FileSize .Size}}</td>
|
2017-12-11 04:37:04 +00:00
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2021-03-22 04:04:19 +00:00
|
|
|
<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Paginater.Current}}&sort={{$.SortType}}" data-id="{{.ID}}" data-name="{{.Name}}">{{svg "octicon-trash"}}</a></td>
|
2017-03-15 22:39:38 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-25 23:45:44 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-09-25 23:45:44 +00:00
|
|
|
</div>
|
2014-08-29 12:50:43 +00:00
|
|
|
</div>
|
2015-12-05 22:39:29 +00:00
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui icon header">
|
2021-03-22 04:04:19 +00:00
|
|
|
{{svg "octicon-trash"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{.i18n.Tr "repo.settings.delete"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "repo.settings.delete_desc"}}</p>
|
2019-01-06 20:08:25 +00:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_2" `<span class="name"></span>` | Safe}}<br>
|
2016-07-23 12:42:46 +00:00
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2015-12-05 22:39:29 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|