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">
|
|
|
|
<table class="ui very basic striped table unstackable">
|
|
|
|
<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>
|
|
|
|
<td>{{.Package.Name}}</td>
|
2024-03-04 11:57:30 +01: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>
|
2023-04-25 21:48:30 +02:00
|
|
|
<td>{{DateTime "short" .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>
|