mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
6d9b8175a2
closes https://github.com/TryGhost/Team/issues/969 Wires the bulk action operation UI to Ghost API to perform operations on filtered member list - unsubscribe filtered members, add label to filtered members or remove label from filtered members
37 lines
1.3 KiB
Handlebars
37 lines
1.3 KiB
Handlebars
<header class="modal-header" data-test-modal="delete-members">
|
|
<h1>Add Label</h1>
|
|
</header>
|
|
<a class="close" href="" role="button" title="Close" {{action "closeModal"}}>{{svg-jar "close"}}<span class="hidden">Close</span></a>
|
|
|
|
{{#if (not this.confirmed)}}
|
|
<div class="modal-body" data-test-state="add-label-unconfirmed">
|
|
<GhMemberSingleLabelInput @onChange={{action "setLabel"}} @triggerId="label-input" data-test-input="" />
|
|
<p class="mt2 ml1">
|
|
Will be added to the currently selected <span class="fw6" data-test-text="member-count">{{gh-pluralize this.model.memberCount "member"}}</span>
|
|
</p>
|
|
</div>
|
|
{{else}}
|
|
<div class="gh-content-box pa" data-test-state="add-label-complete">
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="modal-footer">
|
|
{{#if (not this.confirmed)}}
|
|
<button {{action "closeModal"}} class="gh-btn" data-test-button="cancel">
|
|
<span>Cancel</span>
|
|
</button>
|
|
|
|
<GhTaskButton
|
|
@buttonText="Add Label"
|
|
@successText="Added"
|
|
@task={{this.addLabelTask}}
|
|
@class="gh-btn gh-btn-green gh-btn-icon"
|
|
data-test-button="confirm"
|
|
/>
|
|
{{else}}
|
|
<button {{action "closeModal"}} class="gh-btn gh-btn-black" data-test-button="close-modal">
|
|
<span>Close</span>
|
|
</button>
|
|
{{/if}}
|
|
</div>
|