I'm trying to convert utc times to localtime in my template and for some reason doing:
{% load tz %}
{% localtime on %}
{{ value }}
{% endlocaltime %}
still gives me the value in utc
however
{{ value|localtime }}
gives me the value using my local timezone setting
setting USE_TZ in settings.py to True also seems to do nothing
any idea what i'm doing wrong?