{% extends "management/base.html" %} {% load static i18n management_tag base_tag %} {% block page_title %}
{% csrf_token %}

{{page_title}}

{% endblock page_title %} {% block content %}
{% include "account/signup_form.html" with field=form.name %}
{% for field in form.visible_fields %}
{% if field.name not in 'name' %} {% include "account/signup_form.html" with field=field %} {% endif %}
{% endfor %}
{% endblock content %}