backup size column does not need to be so large

This commit is contained in:
Jeff Atwood 2014-04-17 23:49:51 -07:00
parent f6783775f2
commit b846eb4544
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<table>
<tr>
<th width="40%">{{i18n admin.backups.columns.filename}}</th>
<th width="30%">{{i18n admin.backups.columns.size}}</th>
<th>
<th width="50%">{{i18n admin.backups.columns.filename}}</th>
<th width="10%">{{i18n admin.backups.columns.size}}</th>
<th class="pull-right">
{{resumable-upload target="/admin/backups/upload" success="uploadSuccess" error="uploadError" uploadText=uploadText}}
<button {{action toggleReadOnlyMode}} class="btn" {{bind-attr disabled="readOnlyModeDisabled" title="readOnlyModeTitle"}}><i class="fa fa-eye"></i>{{readOnlyModeText}}</button>
</th>
@ -11,7 +11,7 @@
<tr>
<td>{{backup.filename}}</td>
<td>{{humanSize backup.size}}</td>
<td>
<td class="pull-right">
<a {{bind-attr href="backup.link"}} class="btn download" title="{{i18n admin.backups.operations.download.title}}"><i class="fa fa-download"></i>{{i18n admin.backups.operations.download.text}}</a>
<button {{action destroyBackup backup}} class="btn btn-danger" {{bind-attr disabled="destroyDisabled" title="destroyTitle"}}><i class="fa fa-trash-o"></i>{{i18n admin.backups.operations.destroy.text}}</button>
<button {{action startRestore backup}} class="btn" {{bind-attr disabled="restoreDisabled" title="restoreTitle"}}><i class="fa fa-undo"></i>{{i18n admin.backups.operations.restore.text}}</button>