{% load i18n static %} {% trans 'Log in' %} | {{ site_title }}

{{ site_header|default:_('Django administration') }}

{% trans 'Sign in to your account' %}

{% if form.errors %}

{% if form.errors.items|length == 1 %} {% trans "Please correct the error below." %} {% else %} {% trans "Please correct the errors below." %} {% endif %}

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