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

Request change to {{ allocation.get_parent_resource }} for project: {{ allocation.project.title }}


Request changes to an existing allocation using the form below. For each change you must provide a justification.

Allocation Information

{% csrf_token %}
{% if allocation.is_changeable %} {% endif %} {% if allocation.is_locked %} {% else %} {% endif %}
Project: {{ allocation.project }}
Resource{{ allocation.resources.all|pluralize }} in allocation: {{ allocation.get_resources_as_string }}
Justification: {{ allocation.justification }}
Status: {{ allocation.status }}
Start Date: {{ allocation.start_date }}
End Date: {{ allocation.end_date }} {% if allocation.is_locked and allocation.status.name == 'Active' and allocation.expires_in <= 60 and allocation.expires_in >= 0 %} Expires in {{allocation.expires_in}} day{{allocation.expires_in|pluralize}} - Not renewable {% endif %}
Request End Date Extension: {{ form.end_date_extension }}
Description: {{allocation.description|default_if_none:""}}
Created: {{ allocation.created|date:"M. d, Y" }}
Last Modified: {{ allocation.modified|date:"M. d, Y" }}
Locked Unlocked
{% if formset %}

Allocation Attributes

{% for form in formset %} {% endfor %}
Attribute Current Value Request New Value
{{form.name.value}} {{form.value.value}} {{form.new_value}}
{{ formset.management_form }}
{% endif %}
{{form.justification | as_crispy_field }} Back to Allocation
{% endblock %}