mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
6d11515f81
closes https://github.com/TryGhost/Ghost/issues/8501 - don't show publish menu for new posts - the publishmenu options don't make much sense for a post that hasn't been saved yet - show post status as "new" when a post is unsaved rather than "draft"
12 lines
161 B
Handlebars
12 lines
161 B
Handlebars
{{#if _isSaving}}
|
|
Saving...
|
|
{{else if isPublished}}
|
|
Published
|
|
{{else if isScheduled}}
|
|
Scheduled
|
|
{{else if isNew}}
|
|
New
|
|
{{else}}
|
|
Draft
|
|
{{/if}}
|