Need a ListBox/Dropdown with pytz common_timezones name each difference for UTC.
<select style="cursor:pointer; min-width: 300px;" name="timezone">
{% for tz in timezones %}
<option value="{{ tz }}"{% if tz == TIME_ZONE %} selected="selected"{% endif %}>{{ tz }}</option>
{% endfor %}
</select>
I'm feeding that list with: 'timezones': pytz.common_timezones, 'TIME_ZONE': request.session['django_timezone'] on render to response...
but I'm getting only a list of names.. I needed a list of names the difference of each time zone for UTC..
example:
America/XYZ UTC-xxxx/UTC-xxxx+1
Europe/XPTO UTC+xxxx
Edited: I would be happy getting the present known offsets for each timezone like showed here http://www.timeanddate.com/worldclock/) in this moment (this instant) and if possible with one/two last years spawn (the possibilities like: http://www.timeanddate.com/library/abbreviations/timezones/).
Thanks in advance for any help given!