a1161e20f3
Improved the noavatar cacheability by constraining them in a range. Improved the noavatar cacheability by serving a small subset from Gosora. Improved the formatting of bytes in the memory analytics pane. Static resources with checksums will now have their caches expire in a week rather than a day. Tweaked the padding on the sub_heads on Nox. Moved a block of CSS out of a template and into panel.css in Tempra Simple and Shadow. Added the panel_themes_menus_items_suffix phrase. Added the DisableNoavatarRange config setting. Added the DisableDefaultNoavatar config setting.
15 lines
548 B
HTML
15 lines
548 B
HTML
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><h1>{{lang "panel_backups_head"}}</h1></div>
|
|
</div>
|
|
<div id="panel_backups" class="colstack_item rowlist">
|
|
{{range .Backups}}
|
|
<div class="rowitem panel_compactrow">
|
|
<span>{{.SQLURL}}</span>
|
|
<span class="panel_floater">
|
|
<a href="/panel/backups/{{.SQLURL}}" class="panel_tag panel_right_button">{{lang "panel_backups_download"}}</a>
|
|
</span>
|
|
</div>
|
|
{{else}}
|
|
<div class="rowitem rowmsg">{{lang "panel_backups_no_backups"}}</div>
|
|
{{end}}
|
|
</div> |