mirror of https://github.com/zulip/zulip.git
53 lines
3.0 KiB
Handlebars
53 lines
3.0 KiB
Handlebars
<div class="hide" id="stream-creation" tabindex="-1" role="dialog"
|
|
aria-label="{{t 'Channel creation' }}">
|
|
<form id="stream_creation_form">
|
|
<div class="stream-creation-simplebar-container" data-simplebar>
|
|
<div class="alert stream_create_info"></div>
|
|
<div id="stream_creating_indicator"></div>
|
|
<div class="stream-creation-body">
|
|
<section class="block">
|
|
<label for="create_stream_name" class="settings-field-label">
|
|
{{t "Channel name" }}
|
|
</label>
|
|
<input type="text" name="stream_name" id="create_stream_name" class="settings_text_input"
|
|
placeholder="{{t 'Channel 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" class="settings-field-label">
|
|
{{t "Channel description" }}
|
|
{{> ../help_link_widget link="/help/change-the-channel-description" }}
|
|
</label>
|
|
<input type="text" name="stream_description" id="create_stream_description" class="settings_text_input"
|
|
placeholder="{{t 'Channel 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 "Channel 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" }}
|
|
</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>
|
|
<div class="settings-sticky-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>
|