2019-01-23 11:40:24 -05:00
|
|
|
<div class="backup-options">
|
|
|
|
{{#if localBackupStorage}}
|
2022-06-30 06:30:50 -04:00
|
|
|
<UppyBackupUploader @done={{route-action "uploadSuccess"}} @localBackupStorage={{localBackupStorage}} />
|
2019-01-23 11:40:24 -05:00
|
|
|
{{else}}
|
2022-06-30 06:30:50 -04:00
|
|
|
<UppyBackupUploader @done={{route-action "remoteUploadSuccess"}} />
|
2019-01-23 11:40:24 -05:00
|
|
|
{{/if}}
|
2018-10-14 21:43:31 -04:00
|
|
|
|
2019-01-23 11:40:24 -05:00
|
|
|
{{#if site.isReadOnly}}
|
2022-06-30 06:30:50 -04:00
|
|
|
<DButton @class="btn-default" @icon="far-eye" @action={{action "toggleReadOnlyMode"}} @disabled={{status.isOperationRunning}} @title="admin.backups.read_only.disable.title" @label="admin.backups.read_only.disable.label" />
|
2019-01-23 11:40:24 -05:00
|
|
|
{{else}}
|
2022-06-30 06:30:50 -04:00
|
|
|
<DButton @class="btn-default" @icon="far-eye" @action={{action "toggleReadOnlyMode"}} @disabled={{status.isOperationRunning}} @title="admin.backups.read_only.enable.title" @label="admin.backups.read_only.enable.label" />
|
2019-01-23 11:40:24 -05:00
|
|
|
{{/if}}
|
2019-11-26 12:55:25 -05:00
|
|
|
<div class="backup-message">
|
|
|
|
{{#if status.restoreDisabled}}
|
|
|
|
<a href="site_settings/category/all_results?filter=allow_restore">{{d-icon "info-circle"}} {{i18n "admin.backups.operations.restore.is_disabled"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2019-01-23 11:40:24 -05:00
|
|
|
</div>
|
2018-07-02 23:14:53 -04:00
|
|
|
<table class="grid">
|
|
|
|
<thead>
|
2019-01-23 11:40:24 -05:00
|
|
|
<th width="55%">{{i18n "admin.backups.columns.filename"}}</th>
|
|
|
|
<th width="10%">{{i18n "admin.backups.columns.size"}}</th>
|
2018-10-14 21:43:31 -04:00
|
|
|
<th></th>
|
2018-07-02 23:14:53 -04:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2016-04-29 17:29:41 -04:00
|
|
|
{{#each model as |backup|}}
|
2014-02-12 23:35:46 -05:00
|
|
|
<tr>
|
2018-07-02 23:14:53 -04:00
|
|
|
<td class="backup-filename">{{backup.filename}}</td>
|
|
|
|
<td class="backup-size">{{human-size backup.size}}</td>
|
|
|
|
<td class="backup-controls">
|
|
|
|
<div>
|
2022-06-30 06:30:50 -04:00
|
|
|
<DButton @class="btn-default download" @action={{action "download"}} @actionParam={{backup}} @icon="download" @title="admin.backups.operations.download.title" @label="admin.backups.operations.download.label" />
|
2016-10-20 13:26:41 -04:00
|
|
|
{{#if status.isOperationRunning}}
|
2022-06-30 06:30:50 -04:00
|
|
|
<DButton @icon="far-trash-alt" @action={{route-action "destroyBackup"}} @actionParam={{backup}} @class="btn-danger" @disabled="true" @title="admin.backups.operations.is_running" />
|
|
|
|
<DButton @icon="play" @action={{route-action "startRestore"}} @actionParam={{backup}} @disabled={{status.restoreDisabled}} @class="btn-default" @title={{restoreTitle}} @label="admin.backups.operations.restore.label" />
|
2015-03-26 13:05:27 -04:00
|
|
|
{{else}}
|
2022-06-30 06:30:50 -04:00
|
|
|
<DButton @icon="far-trash-alt" @action={{route-action "destroyBackup"}} @actionParam={{backup}} @class="btn-danger" @title="admin.backups.operations.destroy.title" />
|
|
|
|
<DButton @icon="play" @action={{route-action "startRestore"}} @actionParam={{backup}} @disabled={{status.restoreDisabled}} @class="btn-default btn-restore" @title={{restoreTitle}} @label="admin.backups.operations.restore.label" />
|
2015-03-26 13:05:27 -04:00
|
|
|
{{/if}}
|
2014-04-23 05:20:22 -04:00
|
|
|
</div>
|
2014-02-12 23:35:46 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<tr>
|
2019-01-23 11:40:24 -05:00
|
|
|
<td>{{i18n "admin.backups.none"}}</td>
|
2014-02-12 23:35:46 -05:00
|
|
|
<td></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
2018-07-02 23:14:53 -04:00
|
|
|
</tbody>
|
2014-02-12 23:35:46 -05:00
|
|
|
</table>
|