discourse/app/assets/javascripts/admin/addon/templates/backups-index.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

106 lines
3.4 KiB
Handlebars
Raw Normal View History

<AdminPageSubheader @titleLabel="admin.backups.files_title">
<:actions as |actions|>
<actions.Wrapped as |wrapped|>
{{#if this.localBackupStorage}}
<UppyBackupUploader
class={{wrapped.buttonClass}}
@done={{route-action "uploadSuccess"}}
@localBackupStorage={{this.localBackupStorage}}
/>
{{else}}
<UppyBackupUploader
class={{wrapped.buttonClass}}
@done={{route-action "remoteUploadSuccess"}}
/>
{{/if}}
</actions.Wrapped>
</:actions>
</AdminPageSubheader>
{{#if this.status.restoreDisabled}}
<div class="backup-message alert alert-info">
{{dIcon "circle-info"}}
{{html-safe
(i18n
"admin.backups.operations.restore.is_disabled"
url=this.restoreSettingsUrl
)
}}
</div>
{{/if}}
<table class="d-admin-table admin-backups-list">
2018-07-03 11:14:53 +08:00
<thead>
<th>{{i18n "admin.backups.columns.filename"}}</th>
<th>{{i18n "admin.backups.columns.size"}}</th>
<th></th>
2018-07-03 11:14:53 +08:00
</thead>
<tbody>
{{#each this.model as |backup|}}
<tr
class="d-admin-row__content backup-item-row"
data-backup-filename={{backup.filename}}
>
<td class="d-admin-row__detail">
<div class="backup-filename">
{{backup.filename}}
</div>
</td>
<td class="d-admin-row__detail backup-size">
<div class="d-admin-row__mobile-label">
{{i18n "admin.backups.columns.size"}}
</div>
{{human-size backup.size}}
</td>
<td class="d-admin-row__controls backup-controls">
<div class="d-admin-row__controls-options">
<DButton
@action={{fn this.download backup}}
@title="admin.backups.operations.download.title"
@label="admin.backups.operations.download.label"
class="btn-default btn-small backup-item-row__download"
/>
<DMenu
@identifier="backup-item-menu"
@title={{i18n "more_options"}}
@icon="ellipsis-vertical"
class="btn-small"
>
<:content>
<DropdownMenu as |dropdown|>
<dropdown.item>
<DButton
@icon="trash-can"
@action={{fn (route-action "destroyBackup") backup}}
@disabled={{this.status.isOperationRunning}}
@title={{this.deleteTitle}}
@label="admin.backups.operations.destroy.title"
class="btn-transparent btn-danger backup-item-row__delete"
/>
</dropdown.item>
<dropdown.item>
<DButton
@icon="play"
@action={{fn (route-action "startRestore") backup}}
@disabled={{this.status.restoreDisabled}}
@title={{this.restoreTitle}}
@label="admin.backups.operations.restore.label"
class="btn-transparent backup-item-row__restore"
/>
</dropdown.item>
</DropdownMenu>
</:content>
</DMenu>
</div>
2014-02-13 12:35:46 +08:00
</td>
</tr>
{{else}}
<tr>
<td>{{i18n "admin.backups.none"}}</td>
2014-02-13 12:35:46 +08:00
<td></td>
<td></td>
</tr>
{{/each}}
2018-07-03 11:14:53 +08:00
</tbody>
2014-02-13 12:35:46 +08:00
</table>