{% load i18n %} {% extends "base/base.html" %} {% block content %} {% if form.has_errors %}
{% trans "Your username and password didn't match. Please try again." %}
{% endif %} {% if user.is_authenticated %}{% blocktrans with user.username as username %}You are currently logged in as {{ username }}{% endblocktrans %}
{% endif %} {% endblock %}