mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview"}}</h4>
|
|
<div class="ui attached segment">
|
|
<p>{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview.overview" (len .VersionsToRemove)}}</p>
|
|
</div>
|
|
<div class="ui attached table segment">
|
|
<table class="ui very basic striped table unstackable">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ctx.Locale.Tr "admin.packages.type"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.packages.name"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.packages.version"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.packages.creator"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.packages.size"}}</th>
|
|
<th>{{ctx.Locale.Tr "admin.packages.published"}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .VersionsToRemove}}
|
|
<tr>
|
|
<td>{{.Package.Type.Name}}</td>
|
|
<td>{{.Package.Name}}</td>
|
|
<td><a href="{{.VersionWebLink}}">{{.Version.Version}}</a></td>
|
|
<td><a href="{{.Creator.HomeLink}}">{{.Creator.Name}}</a></td>
|
|
<td>{{FileSize .CalculateBlobSize}}</td>
|
|
<td>{{DateTime "short" .Version.CreatedUnix}}</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr>
|
|
<td colspan="6">{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview.none"}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|