I had a problem with template tag "timezone" for a while.
## template
{% load tz %}
{% timezone 'Asia/Seoul ROK' %}
{{ reservation.datetime|date:"G:i A e" }}
{% endtimezone %}
I already write USE_TZ = True / TIME_ZONE = 'Asia/Seoul ROK' And I also installed pytz module and move the module on to my project (I am developing django on eclipse pydev.)
And whenever I run the project i face the error below.
Invalid timezone: u'Asia/Seoul ROK'
How could I solve this problem? Thanks in advance.