{% extends "common/base.html" %} {% load crispy_forms_tags %} {% load static %} {% block title %} Add Users to Allocation {% endblock %} {% block content %}

Add users to allocation for project: {{allocation.project.title}}


{% if formset %}
{% csrf_token %}
{% for form in formset %} {% endfor %}
# Username First Name Last Name Email
{{ form.selected }} {{ forloop.counter }} {{ form.username.value }} {{ form.first_name.value }} {{ form.last_name.value }} {{ form.email.value }}
{{ formset.management_form }}
Back to Allocation
{% else %} Back to Allocation
All users in project are already in this allocation!
{% endif %} {% endblock %}