mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
{{! Client-side Mustache template for rendering the message edit form. }}
 | 
						|
 | 
						|
<form id="message_edit_form" class="form-horizontal">
 | 
						|
{{#if is_stream}}
 | 
						|
    <div class="control-group">
 | 
						|
        <label class="control-label edit-control-label" for="message_edit_topic">Topic</label>
 | 
						|
        <div class="controls edit-controls">
 | 
						|
          <input type="text" value="{{topic}}" class="message_edit_topic" id="message_edit_topic" />
 | 
						|
          <select class='message_edit_topic_propagate' style='display:none;'>
 | 
						|
            <option selected="selected" value="change_one"> Change only this message topic</option>
 | 
						|
            <option value="change_later"> Change later messages to this topic</option>
 | 
						|
            <option value="change_all"> Change previous and following messages to this topic</option>
 | 
						|
          </select>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
{{/if}}
 | 
						|
    <div class="control-group">
 | 
						|
        <div class="controls edit-controls">
 | 
						|
            <textarea class="message_edit_content" id="message_edit_content">{{content}}</textarea>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="control-group">
 | 
						|
        <div class="controls edit-controls">
 | 
						|
            <button type="button" class="message_edit_save btn btn-primary btn-small">Save</button>
 | 
						|
            <button type="button" class="message_edit_cancel btn btn-small">Cancel</button>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="alert alert-error edit_error hide"></div>
 | 
						|
</form>
 |