{% extends "base.html" %} {% comment %} This template extends and overrides the base dashboard template, providing a minimal base template for Proxito errors and authentication pages. The blocks removed here are specific to the dashboard. Resources that are only used by the dashboard do not need to be loaded in Proxito views, which saves extra requests and avoids including unused JS/CSS. {% endcomment %} {% block head_meta %} {% endblock head_meta %} {# Use our base CSS/JS, though we should remove unwanted files from user hosted content #} {% block head_links %} {{ block.super }} {% endblock head_links %} {% block head_scripts %} {{ block.super }} {% endblock head_scripts %} {% block body_scripts %} {{ block.super }} {% endblock body_scripts %} {% block header %} {% endblock header %} {% block footer %} {% endblock footer %} {% block content-wrapper %}
{% block content %} {% block content_title %}
{% block content_title_text %} {% endblock content_title_text %}
{% endblock content_title %} {% block content_description %}
{% block content_body %} {% endblock content_body %}
{% endblock content_description %} {% endblock content %}
{% block content_extra %}
{% block content_extra_text %} {% endblock content_extra_text %}
{% endblock content_extra %}
{% endblock content-wrapper %}