mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-06 21:57:51 +09:00
We've been cutting down on the "striped" tables (where rows are using alternate row background colors). This completely removes them as I think such a design looks outdated. The removal of selectors starting with `.ui[class*="very basic"].table:not(.striped)` is needed because of a specificity issue in the CSS where table cells would otherwise render with incorrect padding. Example of one affected table: <img width="1027" height="224" alt="image" src="https://github.com/user-attachments/assets/2f3006ca-99a1-4655-afdb-b7cd9e5f19c7" />
35 lines
1.2 KiB
Handlebars
35 lines
1.2 KiB
Handlebars
<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 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>{{DateUtils.AbsoluteShort .Version.CreatedUnix}}</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr>
|
|
<td colspan="6">{{ctx.Locale.Tr "packages.owner.settings.cleanuprules.preview.none"}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|