{% extends "base.html" %} {% load static i18n l10n tz %} {% block title %}{% trans "Example page" %}{% endblock %} {% block body %} {% get_current_timezone as TIME_ZONE %}

{% trans "Welcome to Django" %}

{% trans "It worked!" %}

{% trans "Variable" %} {% trans "Value" %}
{% templatetag openvariable %} IS_DEBUG {% templatetag closevariable %} {{ IS_DEBUG }}
{% templatetag openvariable %} LANGUAGE_CODE {% templatetag closevariable %} {{ LANGUAGE_CODE }}
{% templatetag openvariable %} TIME_ZONE {% templatetag closevariable %} {{ TIME_ZONE }}
{% endblock %}