19 lines
576 B
Handlebars
19 lines
576 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>
|
||
{{textField value=topicName placeholderKey="composer.title_placeholder"}}
|
||
</form>
|
||
|
||
</div>
|
||
|
||
<div class="modal-footer">
|
||
<button class='btn btn-primary' {{bindAttr disabled="buttonDisabled"}} {{action movePostsToNewTopic}}>{{buttonTitle}}</button>
|
||
</div> |