{% extends "registration/base.html" %} {% load i18n jazzmin %} {% get_jazzmin_settings request as jazzmin_settings %} {% get_jazzmin_ui_tweaks as jazzmin_ui %} {% block content %}

{{ jazzmin_settings.welcome_sign }}

{% csrf_token %} {% if user.is_authenticated %}

{% blocktrans trimmed %} You are authenticated as {{ username }}, but are not authorized to access this page. Would you like to login to a different account? {% endblocktrans %}

{% endif %} {% if form.errors %} {% if form.username.errors %}

{{ form.username.label }}: {{ form.username.errors|join:', ' }}

{% endif %} {% if form.password.errors %}

{{ form.password.label }}: {{ form.password.errors|join:', ' }}

{% endif %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

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