This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/app/templates/components/shared-draft-controls.hbs
2022-12-28 13:11:12 +00:00

26 lines
702 B
Handlebars

<div class="shared-draft-controls">
{{#if this.publishing}}
{{i18n "shared_drafts.publishing"}}
{{else}}
{{i18n "shared_drafts.notice"}}
<div class="publish-field">
<label>{{i18n "shared_drafts.destination_category"}}</label>
<CategoryChooser
@value={{this.topic.destination_category_id}}
@onChange={{action "updateDestinationCategory"}}
/>
</div>
<div class="publish-field">
{{#if this.validCategory}}
<DButton
@action={{action "publish"}}
@label="shared_drafts.publish"
@class="btn-primary publish-shared-draft"
@icon="far-clipboard"
/>
{{/if}}
</div>
{{/if}}
</div>