{% extends "base.html" %} {% block content %}

Login


{% if form.errors and not form.non_field_errors and not form.this_is_the_login_form.errors %} {% endif %} {% if form.non_field_errors or form.this_is_the_login_form.errors %} {% for error in form.non_field_errors|add:form.this_is_the_login_form.errors %}

{{ error }}

{% endfor %} {% endif %}
{% csrf_token %}
{% include "dojo/form_fields.html" with form=form %}
{% endblock %}