{% extends 'admin/base.html' %} {% load i18n static admin_interface_tags %} {% block title %} {% get_admin_interface_theme as theme %} {% if title %}{{ title }} | {% endif %}{% if theme.title %}{% trans theme.title %}{% else %}{{ site_title|default:_('Django administration') }}{% endif %} {% endblock %} {% block extrastyle %} {% get_admin_interface_theme as theme %} {% endblock %} {% block blockbots %} {{ block.super }} {# https://github.com/elky/django-flat-responsive#important-note #} {% get_admin_interface_theme as theme %} {% if theme.related_modal_active %} {% endif %} {% endblock %} {% block bodyclass %}admin-interface flat-theme {% get_admin_interface_theme as theme %}{% if theme.name %}{{ theme.name|slugify }}-theme{% endif %}{% endblock %} {% block branding %} {% get_admin_interface_theme as theme %}

{% if theme.logo_visible %} {% if theme.logo %} {% else %} {% endif %} {% endif %} {% if theme.title_visible %} {% if theme.title %}{% trans theme.title %}{% else %}{% trans 'Django administration' %}{% endif %} {% endif %}

{% endblock %}