{% extends 'base.html' %} {% load i18n %} {% block page_title %}{% trans 'Request access' %} – {{ block.super }}{% endblock %} {% block inner_content %}

{% trans 'Request access' %}

{% csrf_token %} {% include 'mtp_common/forms/error-summary.html' with form=form only %} {% include 'mtp_common/forms/field.html' with field=form.first_name only %} {% include 'mtp_common/forms/field.html' with field=form.last_name only %} {% include 'mtp_common/forms/field.html' with field=form.email only %} {% include 'mtp_common/forms/field.html' with field=form.username only %} {% block sign_up_extras_fields %}{% endblock %} {% include 'mtp_common/forms/textarea.html' with field=form.reason only %} {% with field=form.role %} {% endwith %}
{% endblock %}