{% extends "base.html" %} {% block title %}COR Portal - ICDEV™{% endblock %} {% block content %}
{{ contracts | length }}
Total Contracts
{{ contracts | selectattr('status', 'equalto', 'active') | list | length }}
Active
${{ contracts | sum(attribute='total_value') | default(0) | round(0) | int | string() }}
Total Value

Contracts

{% for contract in contracts %} {% else %} {% endfor %}
Contract # Title Agency Status Health POP End Value
{{ contract.contract_number | default('—') }} {{ contract.title | default('—') }} {{ contract.agency | default('—') }} {% set cstatus = contract.status | default('unknown') %} {% set cstatus_colors = {'active': 'success', 'complete': 'info', 'at_risk': 'warning', 'overdue': 'error', 'closed': 'info', 'pending': 'warning'} %} {{ cstatus | replace('_', ' ') | title }} {% set health = contract.health | default('unknown') %} {% if health == 'green' %} Green {% elif health == 'yellow' %} Yellow {% elif health == 'red' %} Red {% else %} {{ health | title }} {% endif %} {{ contract.pop_end | default('—') }} ${{ contract.total_value | default(0) | round(0) | int }}
No contracts available.
This portal provides read-only access. Contact your Contracting Officer{% if cor_email %} at {{ cor_email }}{% endif %} for changes.
{% endblock %}