2014-02-13 12:35:46 +08:00
|
|
|
<table>
|
|
|
|
<tr>
|
2014-04-23 17:20:22 +08:00
|
|
|
<th width="55%">{{i18n admin.backups.columns.filename}}</th>
|
2014-04-18 14:49:51 +08:00
|
|
|
<th width="10%">{{i18n admin.backups.columns.size}}</th>
|
2014-04-23 17:20:22 +08:00
|
|
|
<th>
|
|
|
|
<div 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>
|
|
|
|
</div>
|
2014-02-13 12:35:46 +08:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{{#each backup in model}}
|
|
|
|
<tr>
|
|
|
|
<td>{{backup.filename}}</td>
|
2014-06-11 01:04:31 +08:00
|
|
|
<td>{{human-size backup.size}}</td>
|
2014-04-23 17:20:22 +08:00
|
|
|
<td>
|
|
|
|
<div 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>
|
2014-08-17 13:53:41 +08:00
|
|
|
<button {{action destroyBackup backup}} class="btn btn-danger" {{bind-attr disabled="destroyDisabled" title="destroyTitle"}}><i class="fa fa-trash-o"></i></button>
|
2014-05-17 16:46:39 +08:00
|
|
|
<button {{action startRestore backup}} class="btn" {{bind-attr disabled="restoreDisabled" title="restoreTitle"}}><i class="fa fa-play"></i>{{i18n admin.backups.operations.restore.text}}</button>
|
2014-04-23 17:20:22 +08:00
|
|
|
</div>
|
2014-02-13 12:35:46 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<tr>
|
|
|
|
<td>{{i18n admin.backups.none}}</td>
|
|
|
|
<td></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</table>
|