mirror of
https://github.com/discourse/discourse.git
synced 2025-06-02 04:08:41 +08:00
23 lines
698 B
Handlebars
23 lines
698 B
Handlebars
<div id='move-selected' class="modal-body">
|
|
{{#if error}}
|
|
<div class="alert alert-error">
|
|
<button class="close" data-dismiss="alert">×</button>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{{i18n topic.split_topic.instructions count="selectedPostsCount"}}}
|
|
|
|
<form>
|
|
<label>{{i18n topic.split_topic.topic_name}}</label>
|
|
{{text-field value=topicName placeholderKey="composer.title_placeholder" elementId='split-topic-name'}}
|
|
|
|
<label>{{i18n categories.category}}</label>
|
|
{{categoryChooser value=categoryId}}
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class='btn btn-primary' {{bind-attr disabled="buttonDisabled"}} {{action movePostsToNewTopic}}>{{buttonTitle}}</button>
|
|
</div>
|