Requires {% load tz %}
Add {% load tz %} near the top of any template that
uses {% get_current_timezone %}. Without it Django does not
know the name and raises TemplateSyntaxError.
The name of the time zone currently in effect, for showing the reader which one they are looking at.
Template
{% load tz %}
{% get_current_timezone as TIME_ZONE %}
<p>All times in {{ TIME_ZONE }}</p>
Result
<p>All times in America/Chicago</p>
