{% extends "admin/base_site.html" %} {% load i18n %} {% block usertools %} {% if is_public_admin %} {% if login_url and not request.user.is_authenticated %} {% translate 'Fazer login' %} {% elif admin_index_url and request.user.is_authenticated %} {{ index_title|default:_('Administração') }} {% endif %} {% include "admin/color_theme_toggle.html" %} {% else %} {{ block.super }} {% endif %} {% endblock %} {% block branding %} {% if is_public_admin %}
{{ site_header|default:_('Django administration') }}
{% else %} {{ block.super }} {% endif %} {% endblock %}