{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{{ block.super }} – {% trans "Login" %} {% endblock %} {% block loginbutton %} {% endblock %} {% block body %}

{% if form.errors %}
{% for msg in form.non_field_errors %} {{ msg }} {% if not forloop.last %}
{% endif %} {% empty %} {% trans "Your username and password were not accepted. Please try again." %} {% endfor %}
{% endif %} {% if first_time_message %}
{{ first_time_message|safe }}
{% endif %}
{% csrf_token %}

{% if os_enable_anonymous_login %} {% trans 'Continue as guest' %} {% endif %}

{% endblock %}