mirror of https://github.com/zulip/zulip.git
64 lines
3.2 KiB
Handlebars
64 lines
3.2 KiB
Handlebars
<div class="hide" id="stream-creation" tabindex="-1" role="dialog"
|
|
aria-label="{{t 'Stream creation' }}">
|
|
<form id="stream_creation_form" class="form-inline">
|
|
<div class="stream-creation-body">
|
|
<section class="block">
|
|
<div class="create-stream-title">
|
|
{{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">
|
|
<b>{{t "Stream description (optional)"}}</b><br />
|
|
<textarea name="stream_description" id="create_stream_description"
|
|
placeholder="{{t 'Stream description' }}" value="" autocomplete="off"></textarea>
|
|
</section>
|
|
<section class="block" id="make-invite-only">
|
|
<div class="create-stream-title">
|
|
{{t "Stream accessibility" }}
|
|
</div>
|
|
<div class="stream-creation-info">
|
|
{{#tr this}}
|
|
For more information on public/private streams, check out our <a href="http://zulip.readthedocs.io/en/latest/security-model.html?highlight=private%20stream#messages-and-history">docs</a>.
|
|
{{/tr}}
|
|
</div>
|
|
<label class="radio">
|
|
<input type="radio" name="privacy" value="public" checked />
|
|
<span class="fa fa-globe" aria-hidden="true"></span>
|
|
{{#tr this}}
|
|
<b>Public:</b> anyone can join; anyone can view complete message history without joining
|
|
{{/tr}}
|
|
</label><br />
|
|
<label class="radio">
|
|
<input type="radio" name="privacy" value="invite-only" />
|
|
<span class="fa fa-lock" aria-hidden="true"></span>
|
|
{{#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>
|
|
<div id="announce-new-stream">
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="announce" value="announce" checked />
|
|
<span></span>
|
|
<div class="fa fa-bullhorn" aria-hidden="true"></div>
|
|
{{t "Announce stream" }}
|
|
</label>
|
|
<span class="fa fa-question-circle" aria-hidden="true" id="announce-stream-docs"></span>
|
|
</div>
|
|
</section>
|
|
<section class="block">
|
|
<label class="control-label" for="people_to_add">
|
|
{{t "People to add" }}
|
|
</label>
|
|
<div class="controls" id="people_to_add"></div>
|
|
</section>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-default" data-dismiss="modal">{{t "Cancel" }}</button>
|
|
<button class="btn btn-primary" type="submit">{{t "Create" }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|