{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Login' %}{% endblock %} {% block content %}

{% trans "Login" %}

{% if not user.is_anonymous %} {% trans "You are currently logged in." %}  {% trans "Log Out" %} {% else %} {% if not locked %}
{% csrf_token %}
{% comment %}

{% trans 'Forgot your password?' %} | {% trans 'Having problems signing in?' %}

{% endcomment %}
{% else %}

{% trans 'Your account was locked. Please ' %} {% trans 'contact the administrator' %}.

{% endif %} {% endif %} {% endblock %}