{% extends "base.html" %} {% block title %}Compliance Gaps — {{ opp.title }} - ICDEV™{% endblock %} {% block content %}
{{ orphaned|length }}
Not Addressed
{{ compliance_total }}
Total Requirements
{{ sections|length }}
Available Sections
{{ gap_pct|round(1) }}%
Gap Coverage
{% if orphaned %}
{% for item in orphaned %} {% endfor %}
# Requirement Text RFP Section Volume Type Assign to Section
{{ item.sort_order or loop.index }} {{ item.requirement_text[:120] if item.requirement_text else '—' }}{% if item.requirement_text and item.requirement_text|length > 120 %}...{% endif %} {{ item.section_ref or '—' }} {{ item.volume_ref or '—' }} {% set type_colors = {'shall': 'error', 'must': 'error', 'will': 'warning', 'should': 'info'} %} {{ item.requirement_type or '—' }}
{% else %}

No compliance gaps found

All requirements have been addressed or marked not applicable.

{% endif %} {% endblock %}