aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/configure.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-04-03 19:23:30 +0200
committerArthurHoaro <arthur@hoa.ro>2017-04-04 18:44:24 +0200
commit49bc541d7973bd86776441eb072e66d01b368e68 (patch)
tree5b126e82881ff7d88291bac32b96e0bc3e3340ec /tpl/vintage/configure.html
parenta07373135e08d182314847bb7dfc5a0246610d06 (diff)
downloadShaarli-49bc541d7973bd86776441eb072e66d01b368e68.tar.gz
Shaarli-49bc541d7973bd86776441eb072e66d01b368e68.tar.zst
Shaarli-49bc541d7973bd86776441eb072e66d01b368e68.zip
Apply the new timezone template variables to the vintage theme
Diffstat (limited to 'tpl/vintage/configure.html')
-rw-r--r--tpl/vintage/configure.html24
1 files changed, 22 insertions, 2 deletions
diff --git a/tpl/vintage/configure.html b/tpl/vintage/configure.html
index 5820e6e4..61907ddf 100644
--- a/tpl/vintage/configure.html
+++ b/tpl/vintage/configure.html
@@ -4,7 +4,6 @@
4<body onload="document.configform.title.focus();"> 4<body onload="document.configform.title.focus();">
5<div id="pageheader"> 5<div id="pageheader">
6 {include="page.header"} 6 {include="page.header"}
7 {$timezone_js}
8 <form method="POST" action="#" name="configform" id="configform"> 7 <form method="POST" action="#" name="configform" id="configform">
9 <input type="hidden" name="token" value="{$token}"> 8 <input type="hidden" name="token" value="{$token}">
10 <table id="configuration_table"> 9 <table id="configuration_table">
@@ -35,7 +34,28 @@
35 34
36 <tr> 35 <tr>
37 <td><b>Timezone:</b></td> 36 <td><b>Timezone:</b></td>
38 <td>{$timezone_form}</td> 37 <td>
38 <select id="continent" name="continent">
39 {loop="$continents"}
40 {if="$key !== 'selected'"}
41 <option value="{$value}" {if="$continents.selected === $value"}selected{/if}>
42 {$value}
43 </option>
44 {/if}
45 {/loop}
46 </select>
47 <select id="city" name="city">
48 {loop="$cities"}
49 {if="$key !== 'selected'"}
50 <option value="{$value.city}"
51 {if="$cities.selected === $value.city"}selected{/if}
52 data-continent="{$value.continent}">
53 {$value.city}
54 </option>
55 {/if}
56 {/loop}
57 </select>
58 </td>
39 </tr> 59 </tr>
40 60
41 <tr> 61 <tr>