{% extends "base.html" %} {% block title %}RFI Response Workbench{% endblock %} {% block content %}
CUI // SP-CTI

📄 RFI Response Workbench

Upload an RFI document and generate a complete, HITL-reviewed response ready for export

📎 Upload RFI Document
📎
Drag & drop PDF or DOCX here
or browse to upload
Defines all Part 1 administrative data
{% for step in [('📎','1. Upload RFI','PDF/DOCX parsed automatically'),('✨','2. AI Generate','Content per section'),('🔍','3. WriteGuard','Style, tone, grammar'),('👤','4. HITL Review','Approve, reject, comment'),('📥','5. Export','DOCX + MD ready')] %}
{{ step[0] }}
{{ step[1] }}
{{ step[2] }}
{% endfor %}
{% if sessions %}
Active Sessions {{ sessions|length }} session{{ 's' if sessions|length != 1 }}
{% for s in sessions %} {% set pct = ((s.approved_sections / s.total_sections) * 100)|round(0)|int if s.total_sections > 0 else 0 %} {% endfor %}
RFI Title Profile Progress Status Updated
{{ s.rfi_number or '—' }} {{ (s.rfi_title or '—')[:50] }} {{ s.profile_name|replace('_',' ')|title }}
{{ s.approved_sections }}/{{ s.total_sections }}
{{ s.status|replace('_',' ')|title }} {{ (s.updated_at or '')[:16] }} Open
{% else %}
📄
No sessions yet
Upload an RFI document above to begin the workflow
{% endif %} {% include "includes/iqe_query_widget.html" %} {% endblock %}