{% extends "registration/base.html" %} {% load i18n %} {% block registration_titletag %} {% trans 'Login' %} {% endblock registration_titletag %} {% block registration_metadescription %}{% trans 'Login' %}{% endblock registration_metadescription %} {% block registration_title %}

{% trans 'Login' %}

{% endblock %} {% block registration_content %}
{% if form.errors %}

{% trans "Your username and password didn't match. Please try again." %}

{% endif %} {% if next %} {% if user.is_authenticated %}

{% trans "Your account doesn't have access to this page. To proceed, please login with an account that has access." %}

{% else %}

{% trans 'Please login to see this page.' %}

{% endif %} {% endif %} {% block password_reset_link %} {# Assumes you setup the password_reset view in your URLconf #}

{% trans 'Lost password?' %}

{% endblock password_reset_link %}
{% endblock %}