mirror of https://github.com/zulip/zulip.git
61 lines
3.8 KiB
Handlebars
61 lines
3.8 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 data-simplebar-tab-index="-1">
|
|
<div class="alert stream_create_info"></div>
|
|
<div id="stream_creating_indicator"></div>
|
|
<div class="stream-creation-body">
|
|
<div class="configure_channel_settings stream_creation_container">
|
|
<section id="create_stream_title_container">
|
|
<label for="create_stream_name">
|
|
{{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>
|
|
<a id="archived_stream_rename"></a>
|
|
</section>
|
|
<section id="create_stream_description_container">
|
|
<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>
|
|
<section id="make-invite-only">
|
|
<div class="stream-types">
|
|
{{> 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>
|
|
</div>
|
|
<div class="subscribers_container stream_creation_container">
|
|
<section class="stream_create_add_subscriber_container">
|
|
<label class="choose-subscribers-label" for="people_to_add">
|
|
<h4 class="stream_setting_subsection_title">{{t "Choose subscribers" }}</h4>
|
|
</label>
|
|
<span class="add_all_users_to_stream_btn_container">
|
|
<button class="add_all_users_to_stream small button rounded sea-green">{{t 'Add all users'}}</button>
|
|
</span>
|
|
<div id="stream_subscription_error" class="stream_creation_error"></div>
|
|
<div class="controls" id="people_to_add"></div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="settings-sticky-footer">
|
|
<div class="settings-sticky-footer-left">
|
|
<button id="stream_creation_go_to_configure_channel_settings" class="button small sea-green rounded hide">{{t "Back to settings" }}</button>
|
|
</div>
|
|
<div class="settings-sticky-footer-right">
|
|
<button class="create_stream_cancel button small white rounded" data-dismiss="modal">{{t "Cancel" }}</button>
|
|
<button class="finalize_create_stream button small sea-green rounded hide" type="submit">{{t "Create" }}</button>
|
|
<button id="stream_creation_go_to_subscribers" class="button small sea-green rounded">{{t "Continue to add subscribers" }}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|