{% extends "base.html" %} {% block title %}IDR Review β€” {{ session.title }} β€” ICDEVβ„’{% endblock %} {% block content %}
{{ session.classification or 'CUI // SP-CTI' }}
← Back to Session

πŸ‘ Document Review β€” {{ session.title }}

Review the AI-generated document. Approve, reject, or request revisions section by section.

Domain
{{ session.domain }}
Doc Type
{{ session.doc_type }}
Classification
{{ session.classification }}
Status
{{ session.status }}
{% if artifacts %}
{% for art in artifacts %} {% endfor %}
{% for art in artifacts %}
{% if art.format == 'html' %}
{% else %}
{{ 'πŸ“„' if art.format == 'docx' else 'πŸ“‹' }}
{{ art.format|upper }} Document Ready
⬇ Download {{ art.format|upper }}
{% endif %}
{% endfor %} {% else %}
πŸ“„
Document is being generated…
Refresh this page once generation completes.
{% endif %}

Review Notes

WriteGuard Quality

β€”
overall score
Score data loads after generation.

Audit Trail

Session created {{ (session.created_at | string)[:10] if session.created_at else 'β€”' }}
Classification {{ session.classification }}
HITL reviewer pending
{% if artifacts %}

Download Formats

{% for art in artifacts %}
{{ 'πŸ“„' if art.format == 'docx' else ('πŸ–Ό' if art.format == 'html' else 'πŸ“‹') }} {{ art.format|upper }}
{% endfor %}
{% endif %} {% if remediation_diagrams %}

πŸ”§ Remediation Diagram{{ 's' if remediation_diagrams|length > 1 else '' }}

AI-generated network state after applying all findings

{% for rdiag in remediation_diagrams %}
{{ rdiag | replace('```mermaid', '') | replace('```', '') | trim }}
{% endfor %}
{% endif %}
{% endblock %}