{% extends "admin/base_site.html" %} {% load i18n static %} {% block title %}{% if form.errors %}{% translate "Error:" %} {% endif %}{{ block.super }}{% endblock %} {% block extrastyle %}{{ block.super }} {{ form.media }} {% endblock %} {% block bodyclass %}{{ block.super }} login{% endblock %} {% block branding %}
{% translate "Authentication Required" %}
{% endblock %} {% block usertools %}{% endblock %} {% block nav-global %}{% endblock %} {% block nav-sidebar %}{% endblock %} {% block content_title %}{% endblock %} {% block nav-breadcrumbs %}{% endblock %} {% block content %}
{% if user.is_authenticated %}

{% blocktranslate trimmed %}{{ username }} is not authorized to access this page.{% endblocktranslate %}

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% if form.errors %}

{% translate "Failed to login" %}

{% endif %} {% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% endif %}
{% endblock %}