{% extends "admin/base_site.html" %} {% load i18n static djadmin %} {% block title %}{% if form.errors %}{% translate "Error:" %} {% endif %}{{ block.super }}{% endblock %} {% block extrastyle %}{{ block.super }}{{ form.media }}{% endblock %} {% block bodyclass %}{{ block.super }} login dj-auth{% endblock %} {% block nav-sidebar %}{% endblock %} {% block header %}{% endblock %} {% block usertools %}{% endblock %} {% block nav-global %}{% endblock %} {% block nav-breadcrumbs %}{% endblock %} {% block content_title %}{% endblock %} {% block content_subtitle %}{% endblock %} {% block content %} {% djadmin_conf as dj %}
{% if dj.LOGO_URL %}{% else %}{{ dj.BRAND_SHORT }}{% endif %}

{{ dj.BRAND }}

{% translate 'Sign in to continue' %}

{% if form.errors and not form.non_field_errors %}
{% dj_icon "alert" "dj-icon dj-icon--sm" %}{% blocktranslate count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}
{% endif %} {% for error in form.non_field_errors %}
{% dj_icon "alert" "dj-icon dj-icon--sm" %}{{ error }}
{% endfor %} {% if user.is_authenticated %}
{% dj_icon "alert" "dj-icon dj-icon--sm" %}{% blocktranslate trimmed %}You are authenticated as {{ username }}, but are not authorized to access this page. Would you like to login to a different account?{% endblocktranslate %}
{% endif %}
{% csrf_token %}
{{ form.username.label_tag }}
{{ form.username }}
{{ form.username.errors }}
{{ form.password.label_tag }}
{{ form.password }}
{{ form.password.errors }}
{% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% endif %}

{% if dj.FOOTER %}{{ dj.FOOTER }}{% endif %}

{% endblock %}