diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/i18n/timezones.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt index 594c1688a5..8d5a82f17b 100644 --- a/docs/topics/i18n/timezones.txt +++ b/docs/topics/i18n/timezones.txt @@ -207,7 +207,7 @@ Include a form in ``template.html`` that will ``POST`` to this view: {% csrf_token %} <label for="timezone">Time zone:</label> <select name="timezone"> - {% for city, tz in timezones %} + {% for city, tz in timezones.items %} <option value="{{ tz }}"{% if tz == TIME_ZONE %} selected{% endif %}>{{ city }}</option> {% endfor %} </select> |
