{% load i18n templates %} {% include "theme/head"|template:"html" %}
{% include "theme/header"|template:"html" %}
{% include "theme/nav"|template:"html" %}
{% include "theme/sidebar"|template:"html" %}
{% include "theme/breadcrumbs"|template:"html" %} {% block content %}

{% translate "It Works" %}

{% blocktranslate with request_path=request.path app_name=request.resolver_match.app_name %}You are viewing {{ request_path }} in {{ app_name }} app.{% endblocktranslate %}

{% translate "You should override this template in your app to display your own content." %}

{% endblock content %}
{% include "theme/footer"|template:"html" %}
{% include "theme/secondary_sidebar"|template:"html" %}
{% include "theme/extra_body"|template:"html" %}