Advertisement
houmie

base.html

Aug 29th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {% load tz %}{% load url from future %}
  2. <form action="/timezone/" method="POST">
  3. {% csrf_token %}
  4. <label for="timezone">Time zone:</label>
  5. <select name="timezone">
  6. {% for tz in timezones %}
  7. <option value="{{ tz }}"{% if tz == TIME_ZONE %} selected="selected"{% endif %}>{{ tz }}</option>
  8. {% endfor %}
  9. </select>
  10. <input type="submit" value="Set" />
  11. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement