mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-27 12:31:02 +00:00 
			
		
		
		
	Fix #29562 Follow #29531 (cherry picked from commit 7ec4c65ea5d5a3765d24ee68ae421f2f911b6b5d)
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
| <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>
 |