{% extends "base.html" %} {% block title %}COR Contract Detail - ICDEV™{% endblock %} {% block content %}
| 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. | |||||