diff options
Diffstat (limited to 'tpl/default/configure.html')
-rw-r--r-- | tpl/default/configure.html | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/tpl/default/configure.html b/tpl/default/configure.html index d6536d47..7469ab59 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} · {'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> |
@@ -186,7 +206,7 @@ | |||
186 | <div class="pure-g"> | 206 | <div class="pure-g"> |
187 | <div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile}"> | 207 | <div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile}"> |
188 | <div class="form-label"> | 208 | <div class="form-label"> |
189 | <label for="apiEnabled"> | 209 | <label for="enableApi"> |
190 | <span class="label-name">{'Enable REST API'|t}</span><br> | 210 | <span class="label-name">{'Enable REST API'|t}</span><br> |
191 | <span class="label-desc">{'Allow third party software to use Shaarli such as mobile application'|t}</span> | 211 | <span class="label-desc">{'Allow third party software to use Shaarli such as mobile application'|t}</span> |
192 | </label> | 212 | </label> |
@@ -194,7 +214,7 @@ | |||
194 | </div> | 214 | </div> |
195 | <div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}"> | 215 | <div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}"> |
196 | <div class="form-input"> | 216 | <div class="form-input"> |
197 | <input type="checkbox" name="apiEnabled" id="apiEnabled" | 217 | <input type="checkbox" name="enableApi" id="enableApi" |
198 | {if="$api_enabled"}checked{/if}/> | 218 | {if="$api_enabled"}checked{/if}/> |
199 | </div> | 219 | </div> |
200 | </div> | 220 | </div> |