mirror of https://github.com/zulip/zulip.git
100 lines
5.2 KiB
Handlebars
100 lines
5.2 KiB
Handlebars
<form id="invite-user-form">
|
|
{{#if development_environment}}
|
|
<div class="alert" id="dev_env_msg"></div>
|
|
{{/if}}
|
|
{{#unless user_has_email_set }}
|
|
<div class="tip">{{t "You must add an email address to your account to be able to invite users to Zulip." }}</div>
|
|
{{/unless}}
|
|
<div class="input-group">
|
|
<label>{{t "How would you like to invite users?" }}</label>
|
|
<div class="invite_type_radio_section prop-element" id="invite-user">
|
|
<div id="generate_multiuse_invite_radio_container">
|
|
<label class="generate_multiuse_invite_radio_label">
|
|
<input type="radio" id="generate_multiuse_invite_radio" name="invite-user" value="generate-multiuse-invite" />
|
|
{{t "Generate invite link" }}
|
|
</label>
|
|
</div>
|
|
<div id="email_invite_radio_container">
|
|
<label class="email_invite_radio_label">
|
|
<input type="radio" id="email_invite_radio" name="invite-user" value="email-invite" />
|
|
{{t "Send an email" }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div id="invitee_emails_container">
|
|
<label for="invitee_emails">{{t "Emails (one on each line or comma-separated)" }}</label>
|
|
<textarea rows="2" id="invitee_emails" name="invitee_emails" class="invitee_emails" placeholder="{{t 'One or more email addresses...' }}"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="input-group">
|
|
<label for="expires_in">{{t "Invitation expires after" }}</label>
|
|
<select id="expires_in" class="invite-expires-in modal_select bootstrap-focus-style">
|
|
{{#each expires_in_options}}
|
|
<option {{#if this.default }}selected{{/if}} name="expires_in" value="{{this.value}}">{{this.description}}</option>
|
|
{{/each}}
|
|
</select>
|
|
<p id="expires_on"></p>
|
|
<div id="custom-invite-expiration-time" class="dependent-settings-block">
|
|
<label for="expires_in">{{t "Custom time" }}</label>
|
|
<input type="text" autocomplete="off" name="custom-expiration-time" id="custom-expiration-time-input" class="custom-expiration-time inline-block" value="" maxlength="3"/>
|
|
<select class="custom-expiration-time modal_select bootstrap-focus-style" id="custom-expiration-time-unit">
|
|
{{#each time_choices}}
|
|
<option name="custom_time_choice" class="custom_time_choice" value="{{this}}">{{this}}</option>
|
|
{{/each}}
|
|
</select>
|
|
<p id="custom_expires_on"></p>
|
|
</div>
|
|
</div>
|
|
<div class="input-group">
|
|
<label for="invite_as">{{t "User(s) join as" }}
|
|
{{> help_link_widget link="/help/roles-and-permissions" }}
|
|
</label>
|
|
<select id="invite_as" class="invite-as modal_select bootstrap-focus-style">
|
|
<option name="invite_as" value="{{ invite_as_options.guest.code }}">{{t "Guests" }}</option>
|
|
<option name="invite_as" selected="selected" value="{{ invite_as_options.member.code }}">{{t "Members" }}</option>
|
|
{{#if is_admin}}
|
|
<option name="invite_as" value="{{ invite_as_options.moderator.code }}">{{t "Moderators" }}</option>
|
|
<option name="invite_as" value="{{ invite_as_options.admin.code }}">{{t "Organization administrators" }}</option>
|
|
{{/if}}
|
|
{{#if is_owner}}
|
|
<option name="invite_as" value="{{ invite_as_options.owner.code }}">{{t "Organization owners" }}</option>
|
|
{{/if}}
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label>{{t "Streams they should join" }}</label>
|
|
<div id="streams_to_add">
|
|
{{#if show_select_default_streams_option}}
|
|
<div class="select_default_streams new-style">
|
|
<label class="checkbox display-block">
|
|
<input type="checkbox" id="invite_select_default_streams" checked="checked" />
|
|
<span></span>
|
|
{{t 'Default streams for this organization'}}
|
|
</label>
|
|
</div>
|
|
{{/if}}
|
|
<div class="invite-stream-controls">
|
|
<button class="btn btn-link" type="button" id="invite_check_all_button">{{t "Check all" }}</button> |
|
|
<button class="btn btn-link" type="button" id="invite_uncheck_all_button">{{t "Uncheck all" }}</button>
|
|
</div>
|
|
<div id="invite-stream-checkboxes" class="new-style">
|
|
{{#each streams}}
|
|
|
|
<label class="checkbox display-block">
|
|
<input type="checkbox" name="stream" value="{{stream_id}}"
|
|
{{#if default_stream}}checked="checked"{{/if}} />
|
|
<span></span>
|
|
{{#if (or invite_only is_web_public)}} {{>stream_privacy}} {{name}}
|
|
{{else}}
|
|
#{{name}}
|
|
{{/if}}
|
|
{{#if (eq name ../notifications_stream)}}
|
|
<i>({{t 'Receives new stream announcements' }})</i>
|
|
{{/if}}
|
|
</label>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|