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

Allocation Requests


For each allocation request below, there is the option to activate the allocation request and to view the allocation's detail page.

By default, activating an allocation will make it active for {{ ALLOCATION_DEFAULT_ALLOCATION_LENGTH }} days.

{% if allocation_list %}
{% if PROJECT_ENABLE_PROJECT_REVIEW %} {% endif %} {% for allocation in allocation_list %} {% if PROJECT_ENABLE_PROJECT_REVIEW %} {% endif %} {% endfor %}
# Requested Project Title PI ResourceProject Review StatusStatus Actions
{{allocation.pk}} {{allocation_renewal_dates|get_value_from_dict:allocation.pk|default:allocation.created|date:"M. d, Y"}} {{allocation.project.title|truncatechars:50}} {{allocation.project.pi.first_name}} {{allocation.project.pi.last_name}} ({{allocation.project.pi.username}}) {{allocation.get_parent_resource}}{{allocation.project|convert_status_to_icon}}{{allocation.status}}
{% csrf_token %} Details
{% else %}
No new or pending allocation requests!
{% endif %} {% endblock %}