Files
zulip/web/templates/stream_settings/edit_channel_folder_modal.hbs
Sahil Batra 524442bf44 streams-ui: Add UI to update and archive channel folders.
This commit adds edit and delete buttons in the dropdown
list for folder.

Fixes #35498.
2025-08-04 13:22:11 -07:00

13 lines
633 B
Handlebars

<div>
<label for="edit_channel_folder_name" class="modal-field-label">
{{t 'Channel folder name' }}
</label>
<input type="text" id="edit_channel_folder_name" class="modal_text_input" name="channel_folder_name" maxlength="{{ max_channel_folder_name_length }}" value="{{name}}" />
</div>
<div>
<label for="edit_channel_folder_description" class="modal-field-label">
{{t 'Description' }}
</label>
<textarea id="edit_channel_folder_description" class="settings_textarea" name="channel_folder_description" maxlength="{{ max_channel_folder_description_length }}">{{~description~}}</textarea>
</div>