mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
110 lines
4.3 KiB
Go HTML Template
110 lines
4.3 KiB
Go HTML Template
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin")}}
|
|
<div class="admin-setting-content">
|
|
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "admin.repos.repo_manage_panel"}} ({{ctx.Locale.Tr "admin.total" .Total}})
|
|
<div class="ui right">
|
|
<a class="ui primary tiny button" href="{{AppSubUrl}}/admin/repos/unadopted">{{ctx.Locale.Tr "admin.repos.unadopted"}}</a>
|
|
</div>
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
{{template "shared/repo_search" .}}
|
|
</div>
|
|
<div class="ui attached table segment">
|
|
<table class="ui very basic striped table unstackable">
|
|
<thead>
|
|
<tr>
|
|
<th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.repos.owner"}}</th>
|
|
<th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically">
|
|
{{ctx.Locale.Tr "admin.repos.name"}}
|
|
{{SortArrow "alphabetically" "reversealphabetically" $.SortType false}}
|
|
</th>
|
|
<th>{{ctx.Locale.Tr "repo.watchers"}}</th>
|
|
<th data-sortt-asc="moststars" data-sortt-desc="feweststars">
|
|
{{ctx.Locale.Tr "repo.stars"}}
|
|
{{SortArrow "moststars" "feweststars" $.SortType false}}
|
|
</th>
|
|
<th data-sortt-asc="mostforks" data-sortt-desc="fewestforks">
|
|
{{ctx.Locale.Tr "repo.forks"}}
|
|
{{SortArrow "mostforks" "fewestforks" $.SortType false}}
|
|
</th>
|
|
<th>{{ctx.Locale.Tr "admin.repos.issues"}}</th>
|
|
<th data-sortt-asc="gitsize" data-sortt-desc="reversegitsize">
|
|
{{ctx.Locale.Tr "admin.repos.size"}}
|
|
{{SortArrow "gitsize" "reversegitsize" $.SortType false}}
|
|
</th>
|
|
<th data-sortt-asc="lfssize" data-sortt-desc="reverselfssize">
|
|
{{ctx.Locale.Tr "admin.repos.lfs_size"}}
|
|
{{SortArrow "lfssize" "reverselfssize" $.SortType false}}
|
|
</th>
|
|
<th>{{ctx.Locale.Tr "admin.auths.updated"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.users.created"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.notices.op"}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Repos}}
|
|
<tr>
|
|
<td>{{.ID}}</td>
|
|
<td>
|
|
<a class="gt-word-break" href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
<span class="text gold">{{svg "octicon-lock"}}</span>
|
|
{{end}}
|
|
</td>
|
|
<td>
|
|
<a class="gt-word-break" href="{{.Link}}">{{.Name}}</a>
|
|
{{if .IsArchived}}
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.archived"}}</span>
|
|
{{end}}
|
|
{{if .IsPrivate}}
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.private"}}</span>
|
|
{{else}}
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.internal"}}</span>
|
|
{{end}}
|
|
{{end}}
|
|
{{if .IsTemplate}}
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.template"}}</span>
|
|
{{end}}
|
|
{{if eq .ObjectFormatName "sha256"}}
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.sha256"}}</span>
|
|
{{end}}
|
|
{{if .IsMirror}}
|
|
{{svg "octicon-mirror"}}
|
|
{{else if .IsFork}}
|
|
{{svg "octicon-repo-forked"}}
|
|
{{end}}
|
|
</td>
|
|
<td>{{.NumWatches}}</td>
|
|
<td>{{.NumStars}}</td>
|
|
<td>{{.NumForks}}</td>
|
|
<td>{{.NumIssues}}</td>
|
|
<td>{{ctx.Locale.TrSize .GitSize}}</td>
|
|
<td>{{ctx.Locale.TrSize .LFSSize}}</td>
|
|
<td>{{DateTime "short" .UpdatedUnix}}</td>
|
|
<td>{{DateTime "short" .CreatedUnix}}</td>
|
|
<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>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
|
|
<div class="ui g-modal-confirm delete modal">
|
|
<div class="header">
|
|
{{svg "octicon-trash"}}
|
|
{{ctx.Locale.Tr "repo.settings.delete"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{ctx.Locale.Tr "repo.settings.delete_desc"}}</p>
|
|
{{ctx.Locale.Tr "repo.settings.delete_notices_2" (`<span class="name"></span>`|SafeHTML)}}<br>
|
|
{{ctx.Locale.Tr "repo.settings.delete_notices_fork_1"}}<br>
|
|
</div>
|
|
{{template "base/modal_actions_confirm" .}}
|
|
</div>
|
|
|
|
{{template "admin/layout_footer" .}}
|