{% extends 'admin/base.html' %} {% load static i18n %} {% block stylesheet %}{% endblock %} {% block extrastyle %} {% endblock %} {% block usertools %} {% if title %}

{{ title }}

{% endif %} {% if has_permission %}
{% block welcome-msg %} {% trans 'Welcome,' %} {% firstof user.get_short_name user.get_username %}. {% endblock %} {% block userlinks %} {% if site_url %} {% trans 'View site' %} / {% endif %} {% if user.is_active and user.is_staff %} {% url 'django-admindocs-docroot' as docsroot %} {% if docsroot %} {% trans 'Documentation' %} / {% endif %} {% endif %} {% if user.has_usable_password %} {% trans 'Change password' %} / {% endif %} {% trans 'Log out' %} {% endblock %}
{% endif %} {% endblock %} {% block content_title %}{% endblock %} {% block sidebar %}{% include 'django_admin_material/sidebar.html' with available_apps=available_apps %}{% endblock %}