{% extends "base.html" %} {% block title %}Explorer β€” Document Intelligence β€” ICDEVβ„’{% endblock %} {% block content %}
CUI // SP-CTI

πŸ”Ž Buried-Bodies Explorer

KG-driven findings β€” orphans, tribal knowledge, undocumented dependencies, contradictions, superseded docs.

← Back to DIC
{{ findings | selectattr('severity', 'equalto', 'critical') | list | length }}
πŸ”΄ Critical
{{ findings | selectattr('severity', 'equalto', 'high') | list | length }}
🟑 High
{{ findings | selectattr('severity', 'equalto', 'medium') | list | length }}
πŸ”΅ Medium
{{ findings | selectattr('severity', 'equalto', 'low') | list | length }}
βšͺ Low
{% for f in findings %} {% else %} {% endfor %}
Severity Type Document / Entity Detail Suggested Action Link
{% if f.severity == 'critical' %} πŸ”΄ Critical {% elif f.severity == 'high' %} 🟑 High {% elif f.severity == 'medium' %} πŸ”΅ Medium {% else %} βšͺ Low {% endif %} {{ f.finding_type | replace('_', ' ') | title }} {{ f.title or f.doc_id or f.entity_ref }} {{ f.detail }} {{ f.suggested_action }} {% if f.doc_id %} Open β†’ {% endif %}
No findings yet. Upload documents and build the KG to surface buried bodies.
{% set iqe_canvas = "dic" %} {% set iqe_api_route = "/document-intelligence/api/iqe-query" %} {% set iqe_title = "IQE Query β€” Explorer" %} {% set iqe_examples = [ {"label": "Orphan docs", "query": "foreach d in dic.documents left join dic.versions v on v.doc_id == d.doc_id where v.doc_id is null select d.doc_id, d.title"} ] %} {% include "includes/iqe_query_widget.html" %} {% endblock %}