{% extends "base.html" %} {% block title %}Cases — psyc{% endblock %} {% block content %}

Case Queue

{{ total }} case{{ '' if total == 1 else 's' }}
{% if not cases %}

No cases yet. Run psyc fetch urlhaus to ingest.

{% else %} {% for c in cases %} {% endfor %}
Case ID Ingested Severity TLP Type Summary
{{ c.case_id }} {{ c.ingested_at.strftime('%Y-%m-%d %H:%M') }} {{ c.classification.severity.value if c.classification.severity else '—' }} {{ c.classification.tlp.value }} {{ c.classification.incident_type.value if c.classification.incident_type else '—' }} {{ c.summary }}
{% endif %}
{% endblock %}