{% extends "fellchensammlung/base_generic.html" %} {% load i18n %} {% block content %} {% if form.errors %}

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

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

{% translate "You're already logged in." %}

{% else %} {% if next %}

{% translate "Please login to see this page." %}

{% endif %} {% endif %} {% if not user.is_authenticated %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}

{% translate "Lost password?" %}

{% endif %} {% endblock %}