mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
41 lines
1.9 KiB
Handlebars
41 lines
1.9 KiB
Handlebars
{{!-- template-lint-disable no-invalid-interactive --}}
|
|
<div {{on "mouseover" this.onMouseover}} {{on "mouseleave" this.onMouseleave}} data-test-editor-post-status ...attributes>
|
|
{{#if (and this.isSaving @post.isDraft)}}
|
|
Saving...
|
|
{{else if @post.isSent}}
|
|
<button type="button" {{on "click" @openUpdateFlow}} class="gh-editor-post-status-btn">Sent</button>
|
|
to {{gh-pluralize @post.email.emailCount "member"}}
|
|
{{else if (and @post.emailOnly @post.isScheduled)}}
|
|
Scheduled
|
|
{{#if this.isHovered}}
|
|
<time datetime="{{@post.publishedAtUTC}}" class="ml1 green-d1" data-test-schedule-countdown>
|
|
to be sent to <GhRecipientFilterCount @filter={{@post.fullRecipientFilter}} @newsletter={{@post.newsletter}} />
|
|
{{this.scheduledTime}}
|
|
</time>
|
|
{{/if}}
|
|
{{else if (or @post.isPublished @post.pastScheduledTime)}}
|
|
Published
|
|
{{#if (or (eq @post.email.status "submitting") (eq @post.email.status "submitting"))}}
|
|
and sending to {{gh-pluralize @post.email.emailCount "member"}}
|
|
{{else if (eq @post.email.status "submitted")}}
|
|
and sent to {{gh-pluralize @post.email.emailCount "member"}}
|
|
{{/if}}
|
|
{{else if @post.isScheduled}}
|
|
<time datetime="{{@post.publishedAtUTC}}" class="ml1 green-d1" data-test-schedule-countdown>
|
|
Scheduled
|
|
{{#if this.isHovered}}
|
|
to be published
|
|
{{#if (and @post.newsletter (not @post.email))}}
|
|
and sent to <GhRecipientFilterCount @filter={{@post.fullRecipientFilter}} @newsletter={{@post.newsletter}} />
|
|
{{/if}}
|
|
{{this.scheduledTime}}
|
|
{{/if}}
|
|
</time>
|
|
{{else if @post.isNew}}
|
|
New
|
|
{{else}}
|
|
Draft
|
|
{{unless @hasDirtyAttributes "- Saved"}}
|
|
{{/if}}
|
|
</div>
|