{% extends "base.html" %} {% block title %}Archive — Research Intelligence{% endblock %} {% block content %}
{% if q %} {% include "partials/archive_results.html" %} {% endif %}
{% if archives %}

Reports

{% for a in archives %} {% endfor %}
Week Domain File
{{ a.date }} {% if a.domain == 'aiml' %} AI/ML {% elif a.domain == 'security' %} SECURITY {% else %} {{ a.domain | upper }} {% endif %} {{ a.filename }}
{% else %}

No archives yet

Weekly reports will appear here after pipeline runs.

{% endif %} {% if runs %}

Recent Runs

{% for r in runs %} {% endfor %}
ID Domain Date Range Papers Status Started
{{ r.id }} {% if r.domain == 'aiml' %} AI/ML {% elif r.domain == 'security' %} SECURITY {% else %} {{ r.domain | upper }} {% endif %} {{ r.date_start }} to {{ r.date_end }} {{ r.paper_count }} {{ r.status }} {{ r.started_at[:16] }}
{% endif %} {% endblock %}