aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/configure.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-03-22 19:29:02 +0100
committerArthurHoaro <arthur@hoa.ro>2017-04-04 18:44:20 +0200
commita07373135e08d182314847bb7dfc5a0246610d06 (patch)
tree052d4c2eb99aa5ec9da89b167418cf292cfdbe52 /tpl/default/configure.html
parentae3aa96898834ce3992790e1622541ce48fd78d3 (diff)
downloadShaarli-a07373135e08d182314847bb7dfc5a0246610d06.tar.gz
Shaarli-a07373135e08d182314847bb7dfc5a0246610d06.tar.zst
Shaarli-a07373135e08d182314847bb7dfc5a0246610d06.zip
Apply the new timezone template variables to the default theme
Diffstat (limited to 'tpl/default/configure.html')
-rw-r--r--tpl/default/configure.html28
1 files changed, 24 insertions, 4 deletions
diff --git a/tpl/default/configure.html b/tpl/default/configure.html
index d6536d47..fd8ee9c2 100644
--- a/tpl/default/configure.html
+++ b/tpl/default/configure.html
@@ -73,15 +73,35 @@
73 <div class="pure-u-lg-{$ratioLabel} pure-u-1 "> 73 <div class="pure-u-lg-{$ratioLabel} pure-u-1 ">
74 <div class="form-label"> 74 <div class="form-label">
75 <label> 75 <label>
76 <span class="label-name">{'Timezone'|t}</span> 76 <span class="label-name">{'Timezone'|t}</span><br>
77 <span class="label-desc">{'Continent'|t} &middot; {'City'|t}</span>
77 </label> 78 </label>
78 </div> 79 </div>
79 </div> 80 </div>
80 <div class="pure-u-lg-{$ratioInput} pure-u-1 "> 81 <div class="pure-u-lg-{$ratioInput} pure-u-1 ">
81 <div class="form-input"> 82 <div class="form-input">
82 {ignore}FIXME! too hackish, needs to be fixed upstream{/ignore} 83 <div class="timezone">
83 <div class="timezone" id="timezone-remove">{$timezone_form}</div> 84 <select id="continent" name="continent">
84 <div class="timezone" id="timezone-add"></div> 85 {loop="$continents"}
86 {if="$key !== 'selected'"}
87 <option value="{$value}" {if="$continents.selected === $value"}selected{/if}>
88 {$value}
89 </option>
90 {/if}
91 {/loop}
92 </select>
93 <select id="city" name="city">
94 {loop="$cities"}
95 {if="$key !== 'selected'"}
96 <option value="{$value.city}"
97 {if="$cities.selected === $value.city"}selected{/if}
98 data-continent="{$value.continent}">
99 {$value.city}
100 </option>
101 {/if}
102 {/loop}
103 </select>
104 </div>
85 </div> 105 </div>
86 </div> 106 </div>
87 </div> 107 </div>