{% extends "base.html" %} {% load i18n %} {% block content %}

User activation details


{% csrf_token %} {% if form.non_field_errors %}

{{ form.non_field_errors}}

{% endif %}
{{ form.user }} {% if form.user.errors %} {{ form.user.errors|join:", " }} {% endif %} {{ form.user.help_text }}
{{ form.institution }} {% if form.institution.errors %} {{ form.institution.errors|join:", " }} {% endif %} {{ form.institution.help_text }}
{% endblock %} {% block subcontent %} {% endblock %}