mirror of
https://github.com/zulip/zulip.git
synced 2026-06-30 21:11:04 +08:00
Note that these settings are not operative at present, and are only visible in the settings UI in the development environment.
19 lines
1.0 KiB
Handlebars
19 lines
1.0 KiB
Handlebars
{{#unless (eq render_only false)}}
|
|
<div class="input-group setting-next-is-related {{#if is_disabled}}control-label-disabled{{/if}}">
|
|
<label for="{{#if prefix}}{{prefix}}{{/if}}{{setting_name}}" class="{{setting_name}}_label" id="{{#if prefix}}{{prefix}}{{/if}}{{setting_name}}_label">
|
|
{{label}}
|
|
{{#if label_parens_text}}
|
|
(<i>{{label_parens_text}}</i>)
|
|
{{/if}}
|
|
{{#if help_link}}
|
|
{{> ../help_link_widget link=help_link }}
|
|
{{/if}}
|
|
{{#if tooltip_text}}
|
|
<i class="tippy-zulip-tooltip fa fa-info-circle settings-info-icon" {{#if hide_tooltip}}style="display: none;"{{/if}} data-tippy-content="{{tooltip_text}}"></i>
|
|
{{/if}}
|
|
</label>
|
|
<input type="text" inputmode="numeric" pattern="\d*" value="{{setting_value}}" class="{{setting_name}} settings_text_input setting-widget prop-element" name="{{setting_name}}" data-setting-widget-type="number"
|
|
id="{{#if prefix}}{{prefix}}{{/if}}{{setting_name}}" {{#if is_disabled}}disabled{{/if}} />
|
|
</div>
|
|
{{/unless}}
|