{% extends "base.html" %} {% load i18n %} {% block title %}{% translate "Login" %}{% endblock title %} {% block nav %}{% endblock nav %} {% block main %} {% if form.errors %}
{% blocktranslate %}Your username and password did not match. Please try again.{% endblocktranslate %}
{% endif %} {% if next %} {% if user.is_authenticated %}{% blocktranslate %}Your account doesn't have access to this page. To proceed, please login with an account that has access.{% endblocktranslate %}
{% else %}{% blocktranslate %}Please login to see this page.{% endblocktranslate %}
{% endif %} {% endif %}