{% extends 'base.html' %} {% load guardian_tags %} {% load widget_tweaks %} {% load url_link %} {% load crispy_forms_tags %} {% block content %}

Manage Users for {{ project.name }}

{{ mpu_list|length }} Users found
{% csrf_token %} {{ form.non_form_errors.as_ul }} {{ form.management_form }} {% for form in form.forms %} {% if forloop.first %} {% for field in form.visible_fields %} {% endfor %} {% endif %} {% for field in form.visible_fields %} {% endfor %} {% endfor %}
{{ field.label|capfirst }}
{% comment %} Include the hidden fields in the form {% endcomment %} {% if forloop.first %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% endif %} {{ field.errors.as_ul }} {{ field }}
{% endblock %}