{% extends "base.html" %} {% block title %}RFI Workbench β€” {{ session.rfi_number }}{% endblock %} {% block content %}
← Sessions
{{ session.rfi_number or 'RFI' }} {{ (session.rfi_title or '')[:60] }}
{{ session.status|replace('_',' ')|title }}
{{ session.approved_sections }}/{{ session.total_sections }} accepted
πŸ‘ Preview
{% set ns = namespace(cur_part='') %} {% set part_labels = {'part1':'Part 1 β€” Admin','part2':'Part 2 β€” Technical','part3':'Part 3 β€” Schedule','part4':'Part 4 β€” Business','part5':'Part 5 β€” Insights','appendix':'Appendix'} %} {% for sec in sections %} {% if sec.part != ns.cur_part %} {% set ns.cur_part = sec.part %}
{{ part_labels.get(sec.part, sec.part) }}
{% endif %}
{{ sec.item_number }} {{ sec.title }} {% if sec.status in ('accepted','hitl_approved') %}βœ“ {% elif sec.status == 'hitl_rejected' %}βœ— {% elif sec.status == 'ai_draft_ready' %}⚑ {% else %}β—‹{% endif %}
{% endfor %}
πŸ‘ˆ
Select a section
Click any section in the left panel to begin editing
πŸ› οΈ
Select a section to see AI Assist, WriteGuard, and HITL controls
{% endblock %}