mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
09435ecf76
no issue Keeps component JS backing files and template files in the same directory which avoids hunting across directories when working with components. Also lets you see all components when looking at one directory, whereas previously template-only or js-only components may not have been obvious without looking at both directories. - ran [codemod](https://github.com/ember-codemods/ember-component-template-colocation-migrator/) for app-level components - manually moved in-repo-addon component templates in `lib/koenig-editor` - removed all explicit `layout` imports as JS/template associations are now made at build-time removing the need for them - updated `.embercli` to default to new flat component structure
21 lines
807 B
Handlebars
21 lines
807 B
Handlebars
|
|
<header class="modal-header" data-test-modal="delete-user">
|
|
<h1>Upgrade your plan to continue</h1>
|
|
</header>
|
|
<button class="close" title="Close" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
Your current plan allows you to send posts by email to up to <strong>{{upgradeMessage.limit}}</strong> members, but you currently have <strong>{{upgradeMessage.total}}</strong> members.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button {{on "click" this.closeModal}} class="gh-btn" data-test-button="cancel-upgrade">
|
|
<span>Cancel</span>
|
|
</button>
|
|
|
|
<button {{on "click" (action "upgrade")}} class="gh-btn gh-btn-green" data-test-button="upgrade-plan">
|
|
<span>Upgrade</span>
|
|
</button>
|
|
</div> |