{% extends "base.html" %} {% block title %}Events — sentrytriage{% endblock %} {% block content %}

Events

{{ total_in_view }} matching
{% if events %} {% for ev in events %} {% endfor %}
When Status Category Conf. Caption
{{ ev.timestamp.strftime("%Y-%m-%d %H:%M") }} {% if ev.interesting %} interesting {% elif ev.interesting is sameas false %} boring {% else %} unclassified {% endif %} {{ ev.category or "—" }} {{ "%.2f" | format(ev.confidence or 0) }} {{ ev.one_line_caption or "(no caption)" }}
{% else %}

No events match the current filters.

{% endif %}
{% endblock %}