{% extends "base.html" %} {% set active = "documents" %} {% block title %}Cortex — {{ doc.title }}{% endblock %} {% block content %}
← Back to documents
{% if msg %}
{{ msg }}
{% endif %} {# ── View Mode ── #}

{{ doc.title }}

{{ doc.type }}
Export
{{ doc.id }}
{{ doc.project or '—' }}
{{ doc.tags or '—' }}
{{ doc.tier or '—' }}
{{ doc.confidence }}
{{ doc.created_at[:19] if doc.created_at else '—' }}
{% if doc.summary %}
Summary
{{ doc.summary }}
{% endif %} {% if doc.content %}
Content
{{ doc.content }}
{% endif %}
{# ── Edit Mode ── #}
Relationships
{% if doc.relationships %} {% else %}

No relationships yet.

{% endif %}
{# ── Delete Confirmation Modal ── #} {% endblock %} {% block scripts %} {% endblock %}