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

Renew allocation to {{allocation.get_parent_resource }} for project: {{allocation.project.title}}


{% csrf_token %} {{ formset.management_form }} {% if formset %}
{% for form in formset %} {% endfor %}
# Username First Name Last Name Email User Status
{{ forloop.counter }} {{ form.username.value }} {{ form.first_name.value }} {{ form.last_name.value }} {{ form.email.value }} {{ form.user_status }}
{% else %}
Username First Name Last Name Email
{{ allocation.project.pi.username }} {{ allocation.project.pi.first_name }} {{ allocation.project.pi.last_name }} {{ allocation.project.pi.email }}

There are no additional users on this allocation. To add new users, click submit to complete the renewal and and return to the project page.


{% endif %}
{% endblock %}