2017-02-09 08:10:58 +01:00
|
|
|
<div id="organization-settings" data-name="organization-settings" class="settings-section">
|
2017-05-25 00:50:07 +02:00
|
|
|
<form class="form-horizontal admin-realm-form org-settings-form">
|
2017-06-10 07:03:53 +02:00
|
|
|
<div class="alert" id="admin-realm-notifications-stream-status"></div>
|
2017-10-20 16:55:04 +02:00
|
|
|
<div class="alert" id="admin-realm-signup-notifications-stream-status"></div>
|
2018-03-22 12:56:15 +01:00
|
|
|
<div class="alert admin-realm-failed-change-status"></div>
|
2017-08-18 01:23:55 +02:00
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
<div id="org-msg-editing" class="org-subsection-parent">
|
|
|
|
<div class="subsection-header">
|
|
|
|
<h3>{{t "Message editing" }}</h3>
|
2018-03-23 16:21:40 +01:00
|
|
|
{{ partial "settings-save-discard-widget" "section_name" "msg-editing" }}
|
2017-08-18 01:23:55 +02:00
|
|
|
</div>
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="inline-block organization-settings-parent">
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_allow_message_editing"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_allow_message_editing
|
|
|
|
"label" admin_settings_label.realm_allow_message_editing}}
|
2017-08-18 01:23:55 +02:00
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="input-group disableable {{#unless realm_allow_message_editing}}control-label-disabled{{/unless}}">
|
|
|
|
<label for="id_realm_message_content_edit_limit_minutes"
|
2018-04-05 08:38:46 +02:00
|
|
|
id="id_realm_message_content_edit_limit_minutes_label">
|
2018-03-14 18:50:55 +01:00
|
|
|
{{t 'Message edit limit in minutes (0 for no limit)' }}
|
|
|
|
</label>
|
|
|
|
<input type="text" id="id_realm_message_content_edit_limit_minutes"
|
2018-04-03 10:07:23 +02:00
|
|
|
name="realm_message_content_edit_limit_minutes"
|
|
|
|
class="admin-realm-message-content-edit-limit-minutes"
|
|
|
|
value="{{ realm_message_content_edit_limit_minutes }}"
|
|
|
|
{{#unless realm_allow_message_editing}}disabled="disabled"{{/unless}} />
|
2018-03-14 18:50:55 +01:00
|
|
|
</div>
|
2017-05-17 19:07:00 +02:00
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="input-group">
|
|
|
|
<label class="checkbox">
|
|
|
|
<input type="checkbox" id="id_realm_allow_message_deleting" name="realm_allow_message_deleting"
|
2018-04-03 10:07:23 +02:00
|
|
|
{{#if realm_allow_message_deleting}}checked="checked"{{/if}} />
|
2018-03-14 18:50:55 +01:00
|
|
|
<span></span>
|
|
|
|
</label>
|
|
|
|
<label for="id_realm_allow_message_deleting" id="id_realm_allow_message_deleting_label" class="inline-block">
|
|
|
|
{{t "Users can delete their messages" }}
|
|
|
|
</label>
|
|
|
|
<i class="icon-vector-info-sign settings-info-icon realm_allow_message_deleting_tooltip" data-toggle="tooltip"
|
2018-04-03 10:07:23 +02:00
|
|
|
title="{{t 'Administrators can always delete any message.' }}"/>
|
2018-03-14 18:50:55 +01:00
|
|
|
</div>
|
2017-11-08 13:40:46 +01:00
|
|
|
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_allow_edit_history"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_allow_edit_history
|
|
|
|
"label" admin_settings_label.realm_allow_edit_history}}
|
2017-05-12 17:16:22 +02:00
|
|
|
</div>
|
2017-08-18 01:23:55 +02:00
|
|
|
</div>
|
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
<div id="org-msg-feed" class="org-subsection-parent">
|
|
|
|
<div class="subsection-header">
|
|
|
|
<h3>{{t "Message feed" }}</h3>
|
2018-03-23 16:21:40 +01:00
|
|
|
{{ partial "settings-save-discard-widget" "section_name" "msg-feed" }}
|
2017-05-12 17:16:22 +02:00
|
|
|
</div>
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="inline-block organization-settings-parent">
|
|
|
|
{{#if false}}
|
|
|
|
<div class="input-group">
|
|
|
|
<label for="realm_message_retention_days"
|
2018-04-05 08:38:46 +02:00
|
|
|
id="id_realm_message_retention_days_label">
|
2018-03-14 18:50:55 +01:00
|
|
|
{{t 'Messages retention period in days (blank means messages are retained forever)' }}
|
|
|
|
</label>
|
|
|
|
<input type="text" id="id_realm_message_retention_days"
|
2018-04-03 10:07:23 +02:00
|
|
|
name="realm_message_retention_days"
|
|
|
|
class="admin-realm-message-retention-days"
|
|
|
|
value="{{ realm_message_retention_days }}"/>
|
2018-03-14 18:50:55 +01:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_mandatory_topics"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_mandatory_topics
|
|
|
|
"label" admin_settings_label.realm_mandatory_topics}}
|
2017-08-18 01:23:55 +02:00
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
{{#if server_inline_image_preview}}
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_inline_image_preview"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_inline_image_preview
|
|
|
|
"label" admin_settings_label.realm_inline_image_preview}}
|
2018-03-14 18:50:55 +01:00
|
|
|
{{/if}}
|
2017-08-18 01:23:55 +02:00
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
{{#if server_inline_url_embed_preview}}
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_inline_url_embed_preview"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_inline_url_embed_preview
|
|
|
|
"label" admin_settings_label.realm_inline_url_embed_preview}}
|
2018-03-14 18:50:55 +01:00
|
|
|
{{/if}}
|
2017-08-18 01:23:55 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-03-31 07:39:22 +02:00
|
|
|
<div id="org-user-defaults" class="org-subsection-parent">
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="subsection-header">
|
2018-03-31 07:39:22 +02:00
|
|
|
<h3>{{t "Default user settings" }}</h3>
|
|
|
|
{{ partial "settings-save-discard-widget" "section_name" "user-defaults" }}
|
2017-08-29 02:23:46 +02:00
|
|
|
</div>
|
2018-03-31 07:39:22 +02:00
|
|
|
<p>{{t "Configure default settings for new users joining this organization." }}</p>
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="inline-block organization-settings-parent">
|
|
|
|
<div class="input-group">
|
|
|
|
<label for="realm_default_language" class="dropdown-title">{{t "Default language" }}:</label>
|
|
|
|
<select name="realm_default_language" id="id_realm_default_language">
|
|
|
|
{{#each language_list}}
|
|
|
|
<option value='{{this.code}}'>{{this.name}}</option>
|
|
|
|
{{/each}}
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_default_twenty_four_hour_time"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_default_twenty_four_hour_time
|
|
|
|
"label" admin_settings_label.realm_default_twenty_four_hour_time}}
|
2018-03-31 07:39:22 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="org-notifications" class="org-subsection-parent">
|
|
|
|
<div class="subsection-header">
|
|
|
|
<h3>{{t "Notifications" }}</h3>
|
|
|
|
{{ partial "settings-save-discard-widget" "section_name" "notifications" }}
|
|
|
|
</div>
|
|
|
|
<div class="inline-block organization-settings-parent">
|
2018-04-01 11:32:13 +02:00
|
|
|
{{partial "settings_checkbox"
|
2018-04-03 10:09:00 +02:00
|
|
|
"setting_name" "realm_send_welcome_emails"
|
|
|
|
"prefix" "id_"
|
|
|
|
"is_checked" realm_send_welcome_emails
|
|
|
|
"label" admin_settings_label.realm_send_welcome_emails}}
|
2018-02-18 09:34:54 +01:00
|
|
|
</div>
|
2018-03-14 18:50:55 +01:00
|
|
|
|
|
|
|
<div class="input-group">
|
|
|
|
<label for="realm_notifications_stream" id="realm_notifications_stream_label" class="inline-block"
|
2018-04-05 08:38:46 +02:00
|
|
|
title="{{t 'The stream to which new stream notifications go to.' }}">
|
2018-03-14 18:50:55 +01:00
|
|
|
{{t "New stream notifications:" }}
|
|
|
|
<span class="dropup actual-dropdown-menu" id="id_realm_notifications_stream"
|
2018-04-05 08:38:46 +02:00
|
|
|
name="realm_notifications_stream" aria-labelledby="realm_notifications_stream_label">
|
2018-03-14 18:50:55 +01:00
|
|
|
<button class="button small rounded dropdown-toggle" data-toggle="dropdown">
|
|
|
|
<span id="realm_notifications_stream_name"></span>
|
|
|
|
<i class="fa fa-pencil"></i>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu modal-bg" role="menu">
|
|
|
|
<li class="dropdown-search" role="presentation">
|
|
|
|
<input type="text" role="menuitem" placeholder="{{t 'Filter streams' }}" autofocus/>
|
|
|
|
</li>
|
|
|
|
<span class="dropdown-list-body"></span>
|
|
|
|
</ul>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
{{#if is_admin }}
|
2018-04-03 22:25:18 +02:00
|
|
|
<a class="notifications-stream-disable notification-disable">{{t "[Disable]" }}</a>
|
2018-03-14 18:50:55 +01:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2017-08-29 02:23:46 +02:00
|
|
|
|
2018-03-14 18:50:55 +01:00
|
|
|
<div class="input-group">
|
|
|
|
<label for="realm_signup_notifications_stream" id="realm_signup_notifications_stream_label" class="inline-block"
|
2018-04-05 08:38:46 +02:00
|
|
|
title="{{t 'The stream which new user signup notifications go to.' }}">
|
2018-03-14 18:50:55 +01:00
|
|
|
{{t "New user notifications:" }}
|
|
|
|
<span class="dropup actual-dropdown-menu" id="id_realm_signup_notifications_stream"
|
2018-04-05 08:38:46 +02:00
|
|
|
name="realm_signup_notifications_stream" aria-labelledby="realm_signup_notifications_stream_label">
|
2018-03-30 18:13:10 +02:00
|
|
|
<button class="button small rounded dropdown-toggle" data-toggle="dropdown">
|
2018-03-14 18:50:55 +01:00
|
|
|
<span id="realm_signup_notifications_stream_name"></span>
|
|
|
|
<i class="fa fa-pencil"></i>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu modal-bg" role="menu">
|
|
|
|
<li class="dropdown-search" role="presentation">
|
|
|
|
<input type="text" role="menuitem" placeholder="{{t 'Filter streams' }}" autofocus/>
|
|
|
|
</li>
|
|
|
|
<span class="dropdown-list-body"></span>
|
|
|
|
</ul>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
{{#if is_admin }}
|
2018-04-03 22:25:18 +02:00
|
|
|
<a class="signup-notifications-stream-disable notification-disable">{{t "[Disable]" }}</a>
|
2017-12-20 17:58:49 +01:00
|
|
|
{{/if}}
|
2018-03-14 18:50:55 +01:00
|
|
|
</div>
|
2017-10-20 16:55:04 +02:00
|
|
|
</div>
|
2017-05-12 17:16:22 +02:00
|
|
|
</form>
|
2016-10-05 02:34:45 +02:00
|
|
|
</div>
|