{% extends 'zut/layout.html' %} {% load i18n zut %} {% block title %}{{ _("Register") }}{% endblock %} {% block content %}

{{ _("Register") }}

{% if request.method == 'GET' %} {% if user.is_authenticated %}
{% blocktrans with username=request.user.username %}You are logged in as {{ username }}.{% endblocktrans %}
{% endif %} {% endif %}
{% csrf_token %} {{ form | form_horizontal }}
{{ _("Log in") }}
{% endblock %}