{% extends "common/base.html" %} {% load crispy_forms_tags %} {% load common_tags %} {% load static %} {% block title %} Allocation Review New and Pending Change Requests {% endblock %} {% block content %}

Allocation Change Requests


For each allocation change request below, there is the option to activate the allocation request and to view the allocation change's detail page. If a change request is only for an extension to the allocation, they can be approved on this page. However if the change request includes changes to the allocation's attributes, the request must be reviewed and acted upon in its detail page.

{% if allocation_change_list %}
{% for change in allocation_change_list %} {% endfor %}
# Requested Project Title PI Resource Extension Actions
{{change.pk}} {{ change.created|date:"M. d, Y" }} {{change.allocation.project.title|truncatechars:50}} {{change.allocation.project.pi.first_name}} {{change.allocation.project.pi.last_name}} ({{change.allocation.project.pi.username}}) {{change.allocation.get_parent_resource}} {% if change.end_date_extension == 0 %} {% else %} {{change.end_date_extension}} days {% endif %} {% if change.allocationattributechangerequest_set.all %} Approve Details {% else %} Approve Details {% endif %}
{% else %}
No new or pending allocation change requests!
{% endif %} {% endblock %}