Heavily customized version of smokesignal - https://whtwnd.com/kayrozen.com/3lpwe4ymowg2t
1<div class="field">
2 <label class="label">{{ t("settings-timezone") }}</label>
3 <div class="control">
4 <div class="select">
5 <select name="timezone" hx-post="/settings/timezone" hx-target="#timezone-form" hx-swap="innerHTML"
6 hx-trigger="change" data-loading-disable data-loading-aria-busy>
7 {% for tz in timezones %}
8 <option value="{{ tz }}" {% if tz==current_handle.tz %}selected{% endif %}>{{ tz }}</option>
9 {% endfor %}
10 </select>
11 </div>
12 </div>
13 {% if timezone_updated %}
14 <p class="help is-success">{{ t("settings-timezone-updated") }}</p>
15 {% endif %}
16</div>