Ghost/ghost/admin/app/templates/components/gh-timezone-select.hbs
2018-03-19 09:57:31 +00:00

17 lines
555 B
Handlebars

<span class="gh-select" data-select-text="{{selectedTimezone.label}}" tabindex="0">
{{one-way-select
id="activeTimezone"
name="general[activeTimezone]"
options=selectableTimezones
optionValuePath="name"
optionLabelPath="label"
value=selectedTimezone
update=(action "setTimezone")
}}
{{svg-jar "arrow-down-small"}}
</span>
{{#if hasTimezoneOverride}}
<p>Your timezone has been automatically set to {{activeTimezone}}.</p>
{{/if}}
<p>The local time here is currently {{localTime}}</p>