2015-09-26 04:08:43 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content admin user">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "admin/navbar" .}}
|
2015-09-26 05:15:44 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "admin.repos.repo_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
|
2020-09-25 09:39:23 +05:30
|
|
|
<div class="ui right">
|
|
|
|
<a class="ui blue tiny button" href="{{AppSubUrl}}/admin/repos/unadopted">{{.i18n.Tr "admin.repos.unadopted"}}</a>
|
2021-04-11 09:16:37 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-24 06:33:42 +05:30
|
|
|
{{template "admin/repo/search" .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
</div>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-06-25 03:53:05 +05:30
|
|
|
<th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th>
|
2017-03-16 04:09:38 +05:30
|
|
|
<th>{{.i18n.Tr "admin.repos.owner"}}</th>
|
2020-06-25 03:53:05 +05:30
|
|
|
<th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically">
|
|
|
|
{{.i18n.Tr "admin.repos.name"}}
|
|
|
|
{{SortArrow "alphabetically" "reversealphabetically" $.SortType false}}
|
|
|
|
</th>
|
2017-03-16 04:09:38 +05:30
|
|
|
<th>{{.i18n.Tr "admin.repos.watches"}}</th>
|
2020-06-25 03:53:05 +05:30
|
|
|
<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-16 04:09:38 +05:30
|
|
|
<th>{{.i18n.Tr "admin.repos.issues"}}</th>
|
2020-06-25 03:53:05 +05:30
|
|
|
<th data-sortt-asc="size" data-sortt-desc="reversesize">
|
|
|
|
{{.i18n.Tr "admin.repos.size"}}
|
|
|
|
{{SortArrow "size" "reversesize" $.SortType false}}
|
|
|
|
</th>
|
2017-03-16 04:09:38 +05:30
|
|
|
<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 21:30:27 +05:30
|
|
|
<td>
|
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
2020-09-12 01:49:00 +05:30
|
|
|
<span class="text gold">{{svg "octicon-lock"}}</span>
|
2019-02-18 21:30:27 +05:30
|
|
|
{{end}}
|
|
|
|
</td>
|
2021-01-04 17:48:12 +05:30
|
|
|
<td>
|
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a>
|
2021-04-14 19:03:22 +05:30
|
|
|
{{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 17:48:12 +05:30
|
|
|
{{end}}
|
|
|
|
</td>
|
2017-03-16 04:09:38 +05:30
|
|
|
<td>{{.NumWatches}}</td>
|
|
|
|
<td>{{.NumStars}}</td>
|
2018-05-24 06:33:42 +05:30
|
|
|
<td>{{.NumForks}}</td>
|
2017-03-16 04:09:38 +05:30
|
|
|
<td>{{.NumIssues}}</td>
|
2017-04-11 19:00:15 +05:30
|
|
|
<td>{{SizeFmt .Size}}</td>
|
2017-12-11 10:07:04 +05:30
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2021-03-22 09:34:19 +05:30
|
|
|
<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-16 04:09:38 +05:30
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-26 05:15:44 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-09-26 05:15:44 +05:30
|
|
|
</div>
|
2014-08-29 18:20:43 +05:30
|
|
|
</div>
|
2015-12-06 04:09:29 +05:30
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{.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 18:12:46 +05:30
|
|
|
{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2015-12-06 04:09:29 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|