2021-10-13 18:46:43 +03:00
|
|
|
|
2022-01-26 11:44:42 +03:00
|
|
|
<div class="modal-content" {{on-key "Enter" (perform this.unarchiveOfferTask)}}>
|
2021-10-13 18:46:43 +03:00
|
|
|
<header class="modal-header">
|
2021-10-13 22:23:19 +03:00
|
|
|
<h1>Reactivate offer</h1>
|
2021-10-13 18:46:43 +03:00
|
|
|
</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>
|
2022-01-31 21:26:12 +03:00
|
|
|
Reactivating <strong>{{@data.offer.name}}</strong> will allow new members to subscribe to this tier. Existing members will remain unchanged.
|
2021-10-13 18:46:43 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="gh-btn" {{on "click" @close}}><span>Cancel</span></button>
|
|
|
|
<GhTaskButton
|
2021-10-13 22:23:19 +03:00
|
|
|
@buttonText="Reactivate"
|
2021-10-13 18:46:43 +03:00
|
|
|
@task={{this.unarchiveOfferTask}}
|
|
|
|
@class="gh-btn gh-btn-black gh-btn-icon"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|