{% extends TEMPLATE_BASE %} {% load i18n %} {% block content %}

{% trans "Authentication" %}

{% if user %}

{% blocktrans %} You are currently logged in as
{{user.user_id}} via {{user.user_type}}. {% endblocktrans %}

{% trans "logout" %}

{% else %} {% include "login_box.html" %} {% endif %} {% endblock %}