2019-12-17 16:57:42 +03:00
<header class="modal-header" data-test-modal="delete-user">
2021-03-05 00:08:59 +03:00
<h1>Upgrade to enable publishing</h1>
2019-12-17 16:57:42 +03:00
</header>
<button class="close" title="Close" {{ on "click" this .closeModal }} > {{ svg-jar "close" }} <span class="hidden">Close</span></button>
<div class="modal-body">
<p>
2020-08-24 18:16:31 +03:00
Your current plan allows you to have up to <strong> {{ gh-pluralize upgradeMessage .limit "member" }} </strong>, but you currently have <strong> {{ gh-pluralize upgradeMessage .total "member" }} </strong>.
2019-12-17 16:57:42 +03:00
</p>
</div>
<div class="modal-footer">
<button {{ on "click" this .closeModal }} class="gh-btn" data-test-button="cancel-upgrade">
<span>Cancel</span>
</button>
2021-03-05 15:16:43 +03:00
<button {{ on "click" ( action "upgrade" ) }} class="gh-btn gh-btn-black" data-test-button="upgrade-plan">
2019-12-17 16:57:42 +03:00
<span>Upgrade</span>
</button>
</div>