mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 01:03:23 +03:00
28 lines
1.0 KiB
Handlebars
28 lines
1.0 KiB
Handlebars
|
|
<div class="modal-content" data-test-modal="archive-tier" {{on-key "Enter" (perform this.archiveTierTask)}}>
|
|
<header class="modal-header">
|
|
<h1>Archive tier</h1>
|
|
</header>
|
|
<button type="button" class="close" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
Members will no longer be able to subscribe to <strong>{{@data.tier.name}}</strong> and it will be removed from the list of available tiers in portal.
|
|
</p>
|
|
<p>
|
|
Existing members on this tier will remain unchanged.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="gh-btn" {{on "click" @close}}><span>Cancel</span></button>
|
|
<GhTaskButton
|
|
@buttonText="Archive"
|
|
@successText="Archived"
|
|
@task={{this.archiveTierTask}}
|
|
@class="gh-btn gh-btn-black gh-btn-icon"
|
|
data-test-button="archive-tier"
|
|
/>
|
|
</div>
|
|
</div>
|