{% extends "base.html" %} {% from "partials/results_table.html" import results_table %} {% block title %}History — Tsume{% endblock %} {% block content %} {% if pruned is not none %}
Deleted {{ pruned }} old lookup{{ "s" if pruned != 1 else "" }}.
{% endif %}
{% if filters.search or filters.ioc_type or filters.verdict or filters.provider %} {% endif %}
{% if error %}
Could not load history: {{ error }}
{% elif results %} {{ results_table(results, verdict_label="Verdict / Severity") }}
Page {{ page }}
{% if has_prev %} ← Newer {% endif %} {% if has_next %} Older → {% endif %}
{% else %}

No lookups yet

Run one from Live Lookup to get started — every lookup from here or the CLI shows up here automatically.

Run your first lookup
{% endif %}
Data retention

Permanently delete old lookups from history. Leave a field blank to skip that condition; filling in both deletes anything that matches either.

{% endblock %}