2016-12-02 21:29:16 +01:00
<div id="display-settings" class="settings-section" data-name="display-settings">
2017-04-26 04:45:03 +02:00
<div class="alert" id="display-settings-status"></div>
<form class="display-settings-form">
2017-07-05 21:52:32 +02:00
<h3 class="light"> {{ t "Language settings" }} </h3>
2016-12-02 21:29:36 +01:00
2017-07-05 21:52:32 +02:00
<div class="side-padded-container input-group user-name-section">
<label class="inline-block title"> {{ t "Default language" }} </label>
<a id="default_language" href="#default_language">
2017-07-17 19:33:58 +02:00
<button type="button" class="button rounded small inline-block" id='default_language_name'>
2017-07-05 21:52:32 +02:00
{{ page_params .default_language_name }}
2017-07-17 19:33:58 +02:00
<i class="fa fa-pencil"></i>
2017-07-05 21:52:32 +02:00
</button>
</a>
2017-04-26 04:45:03 +02:00
2017-07-05 21:53:30 +02:00
<div class="input-group">
<label class="checkbox">
<input type="checkbox" name="high_contrast_mode" id="high_contrast_mode"
{{ # if page_params .high_contrast_mode }}
checked="checked"
{{ / if }} />
<span></span>
</label>
<label for="high_contrast_mode" class="inline-block"> {{ t "Enable high contrast mode." }} </label>
</div>
2016-10-05 02:03:00 +02:00
2017-07-05 21:53:30 +02:00
<div class="input-group">
<label class="checkbox">
<input type="checkbox" name="left_side_userlist" id="left_side_userlist"
{{ # if page_params .left_side_userlist }}
checked="checked"
{{ / if }} />
<span></span>
</label>
<label for="left_side_userlist" class="inline-block"> {{ t "Display user list on left side in narrow windows." }} </label>
</div>
2017-07-07 18:15:10 +02:00
</div>
2017-07-05 21:53:30 +02:00
{{ partial "default_language_modal" }}
2016-12-02 21:29:16 +01:00
2017-07-05 21:52:32 +02:00
<h3 class="light"> {{ t "Display settings" }} </h3>
2017-03-02 08:30:53 +01:00
2017-07-05 21:52:32 +02:00
<div class="side-padded-container">
<div class="input-group">
<label class="checkbox">
<input type="checkbox" name="left_side_userlist" id="left_side_userlist"
{{ # if page_params .left_side_userlist }}
checked="checked"
{{ / if }} />
<span></span>
</label>
<label for="left_side_userlist" class="inline-block"> {{ t "Display user list on left side in narrow windows." }} </label>
</div>
<div class="input-group">
<label class="checkbox">
<input type="checkbox" name="emoji_alt_code" id="emoji_alt_code"
{{ # if page_params .emoji_alt_code }}
checked="checked"
{{ / if }} />
<span></span>
</label>
<label for="emoji_alt_code" class="inline-block"> {{ t 'Display emoji reactions as text (:heart: instead of <img alt=":heart:" class="emoji" src="/static/generated/emoji/images/emoji/unicode/2764.png" title=":heart:"/>).' }} </label>
</div>
2017-04-26 04:45:03 +02:00
</div>
2017-04-02 20:59:22 +02:00
2017-07-05 21:52:32 +02:00
<h3 class="light"> {{ t "Time settings" }} </h3>
2017-04-02 20:59:22 +02:00
2017-07-05 21:52:32 +02:00
<div class="side-padded-container">
<div class="input-group">
<label class="checkbox">
<input type="checkbox" name="twenty_four_hour_time" id="twenty_four_hour_time"
{{ # if page_params .twenty_four_hour_time }}
checked="checked"
{{ / if }} />
<span></span>
</label>
<label for="twenty_four_hour_time" class="inline-block">
{{ t "Display time in 24-hour format (17:00 instead of 5:00 PM)" }}
</label>
</div>
<div class="input-group">
<label for="timezone"> {{ t "Time zone" }} :</label>
<select name="timezone" id="user_timezone">
{{ # unless page_params .timezone }}
<option></option>
{{ / unless }}
{{ # each timezones }}
<option value=" {{ this }} "> {{ this }} </option>
{{ / each }}
</select>
</div>
2017-04-26 04:45:03 +02:00
</div>
2017-04-02 20:59:22 +02:00
2017-04-26 04:45:03 +02:00
{{ # if false }}
<div class="input-group">
<label for="emojiset_select"> {{ t "Emoji style" }} :</label>
<select name="emojiset_select" id="emojiset_select">
{{ # each page_params .emojiset_choices }}
<option value= {{ @ key }} > {{ this }} </option>
{{ / each }}
</select>
<div id="emojiset_spinner"></div>
</div>
{{ / if }}
</form>
2016-10-05 02:03:00 +02:00
</div>