diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2018-11-19 15:56:29 -0500 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2018-11-19 15:56:29 -0500 |
| commit | f0aa25926ffffffcd1df6248b6179220a7c039a8 (patch) | |
| tree | 180ec6b9dd43701b71f1bbd389ca99495c561d9a /templates/user | |
| parent | 468ebd25321c5eaec7e5d26eff86e62f237f18cb (diff) | |
| download | famille-flask-f0aa25926ffffffcd1df6248b6179220a7c039a8.tar.gz | |
fix timezones
Diffstat (limited to 'templates/user')
| -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 2fc6c64..95b0323 100644 --- a/templates/user/edit.html +++ b/templates/user/edit.html @@ -81,8 +81,8 @@ <div class="col-md-4"> <select id="timezone" class="form-control" name="timezone"> - {% for timezone in g.timezone %} - <option {%if timezone==session.timezone %}selected="selected" {% endif %}>{{timezone}}</option> + {% for tz in timezones%} + <option {%if tz==session.timezone %}selected="selected" {% endif %}>{{tz}}</option> {% endfor %} </select> </div> |
