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="settings-section-title">
<i class="icon-vector-time settings-section-icon"></i>
{{ t 'Display settings' }}
</div>
<div class="alert" id="display-settings-status"></div>
<form class="display-settings-form">
2016-12-02 21:29:36 +01:00
2017-04-26 04:45:03 +02:00
<p for="default_language" class="inline-block title">
{{ t "Default language" }} : <span id='default_language_name'> {{ page_params .default_language_name }} </span>
<a id="default_language" href="#default_language" title=" {{ t 'Change default language' }} ">[ {{ t "Change" }} ]</a>
2016-12-02 21:29:16 +01:00
</p>
2017-04-26 04:45:03 +02:00
2017-04-29 15:04:59 +02:00
{{ partial "default_language_modal" }}
2016-10-05 02:03:00 +02:00
2017-04-26 04:45:03 +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>
2016-12-02 21:29:16 +01:00
2017-04-26 04:45:03 +02:00
<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-03-02 08:30:53 +01:00
2017-04-26 04:45:03 +02:00
<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>
2017-04-02 20:59:22 +02:00
2017-04-26 04:45:03 +02:00
<div class="input-group">
<label for="timezone"> {{ t "Time zone" }} :</label>
<select name="timezone" id="user_timezone">
{{ # unless page_params .timezone }}
<option></option>
{{ / unless }}
2017-04-02 20:59:22 +02:00
2017-04-26 04:45:03 +02:00
{{ # each timezones }}
<option value=" {{ this }} "> {{ this }} </option>
{{ / each }}
</select>
</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>