{% extends "admin/base_site.html" %} {% load i18n static modern_admin %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block bodyclass %}login{% endblock %} {% block nav-global %}{% endblock %} {% block nav-sidebar %}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content_title %}{% endblock %} {% block content %}
{% if form.errors %}
{% if form.errors.items|length == 1 %} {% trans "Please enter the correct username and password for a staff account. Note that both fields may be case-sensitive." %} {% else %} {% trans "Please enter the correct username and password for a staff account." %} {% endif %}
{% endif %} {% if user.is_authenticated %}
{% blocktrans with username=user.get_username %} You are authenticated as {{ username }}, but are not authorized to access this page. Would you like to log out and log in again as a different user? {% endblocktrans %}
{% endif %}
{% endblock %}