2023-09-25 10:56:50 +02:00
|
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview"}}</h4>
|
2022-11-20 15:08:38 +01:00
|
|
|
<div class="ui attached segment">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview.overview" (len .VersionsToRemove)}}</p>
|
2022-11-20 15:08:38 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="ui attached table segment">
|
2026-02-11 02:58:56 +01:00
|
|
|
<table class="ui very basic table unstackable">
|
2022-11-20 15:08:38 +01:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2023-09-25 10:56:50 +02:00
|
|
|
<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>
|
2022-11-20 15:08:38 +01:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{range .VersionsToRemove}}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{.Package.Type.Name}}</td>
|
2026-05-11 10:36:07 -07:00
|
|
|
<td>
|
|
|
|
|
{{.Package.Name}}
|
|
|
|
|
<span class="label-list">
|
|
|
|
|
{{template "package/shared/visibility_badge" dict "Package" .Package "Owner" .Owner}}
|
|
|
|
|
</span>
|
|
|
|
|
</td>
|
2024-03-04 18:57:30 +08:00
|
|
|
<td><a href="{{.VersionWebLink}}">{{.Version.Version}}</a></td>
|
2022-11-20 15:08:38 +01:00
|
|
|
<td><a href="{{.Creator.HomeLink}}">{{.Creator.Name}}</a></td>
|
|
|
|
|
<td>{{FileSize .CalculateBlobSize}}</td>
|
2024-11-04 19:30:00 +08:00
|
|
|
<td>{{DateUtils.AbsoluteShort .Version.CreatedUnix}}</td>
|
2022-11-20 15:08:38 +01:00
|
|
|
</tr>
|
|
|
|
|
{{else}}
|
|
|
|
|
<tr>
|
2023-09-25 10:56:50 +02:00
|
|
|
<td colspan="6">{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview.none"}}</td>
|
2022-11-20 15:08:38 +01:00
|
|
|
</tr>
|
|
|
|
|
{{end}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|