2016-11-01 22:32:10 +01:00
<div class="hide" id="stream-creation" tabindex="-1" role="dialog"
2017-08-04 16:35:43 +02:00
aria-label=" {{ t 'Stream creation' }} ">
2017-02-15 21:10:53 +01:00
<form id="stream_creation_form" class="form-inline">
2017-11-04 19:19:12 +01:00
<div id="stream_creating_indicator"></div>
2017-02-15 21:10:53 +01:00
<div class="stream-creation-body">
<section class="block">
2017-08-08 18:51:42 +02:00
<div class="stream-title">
2017-02-15 21:10:53 +01:00
{{ t "Stream name" }}
</div>
<input type="text" name="stream_name" id="create_stream_name"
placeholder=" {{ t 'Stream name' }} " value="" autocomplete="off" />
<div id="stream_name_error"></div>
</section>
<section class="block">
2017-08-08 18:51:42 +02:00
<div class="stream-title">
{{ t "Stream description (optional)" }}
</div>
2017-02-15 21:10:53 +01:00
<textarea name="stream_description" id="create_stream_description"
placeholder=" {{ t 'Stream description' }} " value="" autocomplete="off"></textarea>
</section>
<section class="block" id="make-invite-only">
2017-08-08 18:51:42 +02:00
<div class="stream-title">
2017-02-15 21:10:53 +01:00
{{ t "Stream accessibility" }}
</div>
2017-06-10 17:05:52 +02:00
<div class="stream-creation-info">
{{ # tr this }}
2017-12-25 19:28:00 +01:00
For more information on public/private streams, check out our <a href="https://zulip.readthedocs.io/en/latest/production/security-model.html?highlight=private#messages-and-history">docs</a>.
2017-06-10 17:05:52 +02:00
{{ / tr }}
</div>
2017-08-08 19:13:05 +02:00
<ul class="grey-box">
<li>
<label class="radio">
<input type="radio" name="privacy" value="public" checked />
{{ # tr this }}
<b>Public:</b> anyone can join; anyone can view complete message history without joining
{{ / tr }}
</label>
</li>
<li>
<label class="radio">
<input type="radio" name="privacy" value="invite-only" />
{{ # tr this }}
<b>Private:</b> must be invited by a member; new members can only see messages sent after they join; hidden from non-administrator users
{{ / tr }}
</label>
</li>
</ul>
2017-02-15 21:10:53 +01:00
<div id="announce-new-stream">
<label class="checkbox">
<input type="checkbox" name="announce" value="announce" checked />
<span></span>
2017-06-08 07:09:56 +02:00
<div class="fa fa-bullhorn" aria-hidden="true"></div>
2017-02-15 21:10:53 +01:00
{{ t "Announce stream" }}
</label>
2017-06-08 07:09:56 +02:00
<span class="fa fa-question-circle" aria-hidden="true" id="announce-stream-docs"></span>
2017-02-15 21:10:53 +01:00
</div>
</section>
<section class="block">
2017-08-08 18:51:42 +02:00
<label class="stream-title" for="people_to_add">
2017-02-15 21:10:53 +01:00
{{ t "People to add" }}
</label>
<div class="controls" id="people_to_add"></div>
</section>
</div>
<div class="modal-footer">
2017-09-29 19:20:44 +02:00
<button class="button small white rounded" data-dismiss="modal"> {{ t "Cancel" }} </button>
<button class="button small sea-green rounded" type="submit"> {{ t "Create" }} </button>
2017-02-15 21:10:53 +01:00
</div>
</form>
2016-11-01 22:32:10 +01:00
</div>