{% 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

{% if allocation_list %}
{% if PROJECT_ENABLE_PROJECT_REVIEW %} {% endif %} {% for allocation in allocation_list %} {% if PROJECT_ENABLE_PROJECT_REVIEW %} {% endif %} {% endfor %}
# Date Requested/
Last Modified
Project Title PI ResourceProject Review StatusStatus Allocation Actions
{{allocation.pk}} {{ allocation.modified|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}} Activate Deny
{% else %}
No new or pending allocation requests!
{% endif %} {% endblock %}