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

🌑️ Freshness & Modernization

Corpus staleness + modernization findings β€” stale docs float to the top for remediation.

Standards Catalog β†’ ← Back to DIC
{{ heatmap | selectattr('state', 'equalto', 'fresh') | list | length }}
🟒 Fresh
{{ heatmap | selectattr('state', 'equalto', 'aging') | list | length }}
🟑 Aging
{{ heatmap | selectattr('state', 'equalto', 'stale') | list | length }}
πŸ”΄ Stale
β€”
🧭 Open findings β–Ό
Modernization engine not scanned yet.
{% for cid in by_collection.keys() %} {% endfor %}
{% for row in heatmap %} {% else %} {% endfor %}
State Document Collection Score Findings Reason Actions
{% if row.state == 'fresh' %} 🟒 Fresh {% elif row.state == 'aging' %} 🟑 Aging {% elif row.state == 'stale' %} πŸ”΄ Stale {% else %} βšͺ Unknown {% endif %} {{ row.title or row.doc_id }} {{ row.collection_id or 'default' }} {{ ((row.score or 0) * 100) | round(0) | int }}% β€” {{ row.reason or 'β€”' }} πŸ”„ Regenerate Open β†’
No freshness data yet.

Getting started with legacy documents:
1️⃣ Bulk-upload your documents on a collection page Β· 2️⃣ Run a staleness scan (Scan now above) Β· 3️⃣ Review modernization findings here
{% set iqe_canvas = "dic" %} {% set iqe_api_route = "/document-intelligence/api/iqe-query" %} {% set iqe_title = "IQE Query β€” Freshness & Modernization" %} {% set iqe_examples = [ {"label": "Stale docs", "query": "foreach d in dic.doc_freshness where d.state == 'stale' select d.doc_id, d.reason"} ] %} {% include "includes/iqe_query_widget.html" %} {% endblock %}