zulip/web/templates/stream_settings/stream_creation_form.hbs

51 lines
2.7 KiB
Handlebars
Raw Normal View History

<div class="hide" id="stream-creation" tabindex="-1" role="dialog"
aria-label="{{t 'Stream creation' }}">
<form id="stream_creation_form">
<div class="alert stream_create_info"></div>
<div id="stream_creating_indicator"></div>
<div class="stream-creation-body" data-simplebar>
<section class="block">
<label for="create_stream_name">
{{t "Stream name" }}
</label>
<input type="text" name="stream_name" id="create_stream_name" class="settings_text_input"
placeholder="{{t 'Stream name' }}" value="" autocomplete="off" maxlength="{{ max_stream_name_length }}" />
<div id="stream_name_error" class="stream_creation_error"></div>
</section>
<section class="block">
<label for="create_stream_description">
{{t "Stream description" }}
{{> ../help_link_widget link="/help/change-the-stream-description" }}
</label>
<input type="text" name="stream_description" id="create_stream_description" class="settings_text_input"
placeholder="{{t 'Stream description' }}" value="" autocomplete="off" maxlength="{{ max_stream_description_length }}" />
</section>
{{#if ask_to_announce_stream}}
<div id="announce-new-stream">
{{>announce_stream_checkbox }}
</div>
{{/if}}
<section class="block" id="make-invite-only">
<div class="stream-types">
<h3 class="stream_setting_subsection_title">{{t "Stream permissions" }}</h3>
{{> stream_types
stream_post_policy=stream_post_policy_values.everyone.code
is_stream_edit=false
can_remove_subscribers_setting_widget_name="new_stream_can_remove_subscribers_group_id" }}
</div>
</section>
<section class="block">
<label for="people_to_add">
<h4 class="stream_setting_subsection_title">{{t "Choose subscribers" }}</h4>
</label>
<div id="stream_subscription_error" class="stream_creation_error"></div>
<div class="controls" id="people_to_add"></div>
</section>
</div>
<div class="modal-footer">
<button class="button small white rounded" data-dismiss="modal">{{t "Cancel" }}</button>
<button class="finalize_create_stream button small sea-green rounded" type="submit">{{t "Create" }}</button>
</div>
</form>
</div>