mirror of https://github.com/zulip/zulip.git
11 lines
541 B
Handlebars
11 lines
541 B
Handlebars
|
{{! Client-side Mustache template for rendering the topic edit form. }}
|
||
|
|
||
|
<form id="topic_edit_form" class="form-horizontal">
|
||
|
{{! <div class="controls edit-controls"> }}
|
||
|
<input type="text" value="" class="message_edit_topic" id="message_edit_topic">
|
||
|
<button type="button" class="topic_edit_save btn btn-primary btn-small">Save</button>
|
||
|
<button type="button" class="topic_edit_cancel btn btn-small">Cancel</button>
|
||
|
{{! </div> }}
|
||
|
<div class="alert alert-error edit_error hide"></div>
|
||
|
</form>
|