diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2012-11-11 00:50:57 +0100 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2012-11-11 00:50:57 +0100 |
| commit | fa2c433fa604f9684588dddccb50f145a465f4a1 (patch) | |
| tree | 1b22a2940e2e5e606126cb72a13819947b5d488a /templates/user/edit.html | |
| parent | befef25e71eef3bf9150e7ac6718ad7f149ff3f0 (diff) | |
| download | famille-flask-fa2c433fa604f9684588dddccb50f145a465f4a1.tar.gz | |
Finish the timezine feature
Diffstat (limited to 'templates/user/edit.html')
| -rw-r--r-- | templates/user/edit.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/edit.html b/templates/user/edit.html index 9f51c2a..ce2c95f 100644 --- a/templates/user/edit.html +++ b/templates/user/edit.html @@ -42,9 +42,9 @@ <label for="city_line">Ville, CP <span class="info">(dernière ligne)</span> :</label> <input type="text" id="city_line" size="30" name="address_city_line" value="{{user.address_city_line}}"/><br /> <label for="timezone">Timezone:</label> -<select> +<select id="timezone" name="timezone"> {% for timezone in g.timezone %} -<option {%if timezone==session.timezone %}select {% endif %}>{{timezone}}</option> +<option {%if timezone==session.timezone %}selected="selected" {% endif %}>{{timezone}}</option> {% endfor %} </select> </p> |
