Ghost/ghost/admin/app/components/modal-delete-user.hbs

31 lines
1.3 KiB
Handlebars
Raw Normal View History

<header class="modal-header" data-test-modal="delete-user">
<h1>Are you sure you want to delete this user?</h1>
</header>
<a class="close" href="" role="button" title="Close" {{action "closeModal"}}>{{svg-jar "close"}}<span class="hidden">Close</span></a>
<div class="modal-body">
{{#if this.user.count.posts}}
2020-02-07 12:46:05 +03:00
<p>
<strong>{{this.user.name}}</strong> and their <strong data-test-text="user-post-count">{{gh-pluralize this.user.count.posts 'post'}}</strong> will be permanently deleted. If you dont want to lose these posts, you should assign them to a different author.
2020-02-07 12:46:05 +03:00
</p>
<p>
A backup will be automatically downloaded to your device before deletion.
</p>
{{else}}
2020-02-07 12:46:05 +03:00
<p>
<strong>{{this.user.name}}</strong> will be permanently deleted. A backup will be automatically downloaded to your device before deletion.
</p>
{{/if}}
</div>
<div class="modal-footer">
<button {{action "closeModal"}} class="gh-btn" data-test-button="cancel-delete-user">
<span>Cancel</span>
</button>
2020-02-07 12:46:05 +03:00
<GhTaskButton @buttonText="Download backup & delete user"
@successText="Deleted"
@task={{this.deleteUser}}
@class="gh-btn gh-btn-red gh-btn-icon"
data-test-button="confirm-delete-user" />
</div>