{% load i18n %} {% load mama_cas_tags %} {% block title %}{% trans "Central Authentication Service" %}{% endblock title %} {% block extra_head %} {% endblock extra_head %} {% block body %}

{% block content_title %}{% trans "Central Authentication Service" %}{% endblock content_title %}

{% block content %} {% if messages %}
{% endif %} {% if form.errors %}
{% endif %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %}
{% for field in form.visible_fields %} {% if field|field_type = 'charfield' %}
{{ field.label_tag }}{{ field }}
{% else %}
{{ field }}{{ field.label_tag }}
{% endif %} {% endfor %}
{% endblock content %}
{% endblock body %}