Requires {% load tz %}
Add {% load tz %} near the top of any template that
uses {% timezone %}. Without it Django does not
know the name and raises TemplateSyntaxError.
Renders everything inside it in the given time zone, whatever the current one is.
Template
{% load tz %}
{% timezone "America/Chicago" %}
{{ event.starts_at }}
{% endtimezone %}
Pass None to fall back to the default time zone.
