aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/timezone_option.html
blob: 9b44585ff2a0ba1ef13d2bf34719f2b0860a8de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<dl>
	<dt><label for="timezone">{L_BOARD_TIMEZONE}{L_COLON}</label></dt>
	<!-- IF .tz_date -->
	<dd id="tz_select_date" style="display: none;">
		<select name="tz_date" id="tz_date" class="autowidth tz_select">
			<option value="">{L_SELECT_CURRENT_TIME}</option>
			<!-- BEGIN tz_date -->
			<option value="{tz_date.VALUE}"<!-- IF tz_date.SELECTED --> selected="selected"<!-- ENDIF -->>{tz_date.TITLE}</option>
			<!-- END tz_date -->
		</select>
	</dd>
	<!-- ENDIF -->
	<dd>
		<select name="tz" id="timezone" class="autowidth tz_select">
			<option value="">{L_SELECT_TIMEZONE}</option>
			<!-- BEGIN tz_select -->
			<optgroup label="{tz_select.LABEL}" data-tz-value="{tz_select.VALUE}">
				<!-- BEGIN tz_options -->
				<option title="{tz_select.tz_options.TITLE}" value="{tz_select.tz_options.VALUE}"<!-- IF tz_select.tz_options.SELECTED --> selected="selected"<!-- ENDIF -->>{tz_select.tz_options.LABEL}</option>
				<!-- END tz_options -->
			</optgroup>
			<!-- END tz_select -->
		</select>

		<!-- INCLUDEJS timezone.js -->
	</dd>
</dl>