mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
85cce39af7
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades - cleaned up the `upload-image` modal which had multiple areas of code that were no longer being used - disabled `no-duplicate-landmark-elements` template lint rule as it's buggy and mostly gives false positives
46 lines
1.9 KiB
Handlebars
46 lines
1.9 KiB
Handlebars
{{#if this.hostLimitError}}
|
|
<div class="modal-content" data-test-modal="upgrade-unsuspend-user-host-limit">
|
|
<header class="modal-header">
|
|
<h1>Upgrade to un-suspend this user</h1>
|
|
</header>
|
|
<button class="close" title="Close" type="button" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
{{html-safe this.hostLimitError}} To give this user access to Ghost, upgrade to a different plan.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" data-test-button="cancel-upgrade" type="button" {{on "click" @close}}>
|
|
<span>Cancel</span>
|
|
</button>
|
|
|
|
<button class="gh-btn gh-btn-green" data-test-button="upgrade-plan" type="button" {{on "click" this.upgrade}}>
|
|
<span>Upgrade my plan</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div class="modal-content" data-test-modal="unsuspend-user">
|
|
<header class="modal-header">
|
|
<h1>Are you sure you want to un-suspend this user?</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">
|
|
<strong>WARNING:</strong> This user will be able to log in again and will have the same permissions they had previously.
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" type="button" {{on "click" @close}}><span>Cancel</span></button>
|
|
<GhTaskButton
|
|
@buttonText="Un-suspend"
|
|
@successText="Suspended"
|
|
@task={{this.unsuspendUserTask}}
|
|
@class="gh-btn gh-btn-red gh-btn-icon"
|
|
data-test-modal-confirm="true"
|
|
/>
|
|
</div>
|
|
</div>
|
|
{{/if}} |