{% extends "common/base.html" %} {% load common_tags %} {% block content %}

Projects »


{% if project_list %} {% else %} {% if user.userprofile.is_pi or user.is_superuser %} Add a project
{% endif %} {% endif %}

Allocations »


{% if allocation_list %} {% for allocation in allocation_list %} {% if allocation.status.name == "Expired" and allocation.expires_in < 0 %} {% elif allocation.status.name == "Renewal Requested" %} {% elif allocation.expires_in >= 0 and allocation.expires_in <= 30 %} {% elif allocation.expires_in > 30 and allocation.expires_in <= 90 %} {% elif allocation.status.name == "Pending" %} {% elif allocation.status.name == "Active" %} {% if user_status|get_value_by_index:forloop.counter0 == 'PendingEULA' %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}
Project Resource Status
{{allocation.project.title}} {{allocation.get_parent_resource}} {% if allocation.get_parent_resource.get_ondemand_status == 'Yes' and ondemand_url %} {% load static %} ondemand cta {% endif %} ExpiredRenewal RequestedExpires in {{allocation.expires_in}} day{{allocation.expires_in|pluralize }} Expires in {{allocation.expires_in}} day{{allocation.expires_in|pluralize }} {{allocation.status}}Review and Accept EULA to Activate {{allocation.status}}{{allocation.status}}
{% else %} {% endif %}
{% include "portal/extra_app_templates.html" %}
{% endblock %} {% block javascript %} {{ block.super }} {% endblock %}