{% extends "base.html" %} {% block title %}COR Contract Detail - ICDEV™{% endblock %} {% block content %}
Contract #
{{ contract.contract_number | default('—') }}
Agency
{{ contract.agency | default('—') }}
Type
{{ (contract.contract_type or '—') | replace('_', ' ') | title }}
Status
{{ (contract.status or '—') | replace('_', ' ') | title }}
POP Start
{{ contract.pop_start | default('—') }}
POP End
{{ contract.pop_end | default('—') }}
COR Name
{{ contract.cor_name | default('—') }}
COR Email
{{ contract.cor_email | default('—') }}
{% for d in deliverables %} {% else %} {% endfor %}
CDRL # Title Status Due Date Submitted Date Accepted Date
{{ d.cdrl_number | default('—') }} {{ d.title | default('—') }} {% set dstatus = d.status | default('not_started') %} {% set dstatus_colors = {'not_started': 'info', 'in_progress': 'warning', 'draft_complete': 'info', 'internal_review': 'warning', 'submitted': 'success', 'government_review': 'warning', 'accepted': 'success', 'rejected': 'error', 'resubmitted': 'warning', 'overdue': 'error'} %} {{ dstatus | replace('_', ' ') | title }} {{ d.due_date or '—' }} {{ d.submitted_date or '—' }} {{ d.accepted_date or '—' }}
No deliverables for this contract.
This portal provides read-only access. Contact your Contracting Officer for changes.
{% endblock %}