{% extends "django_security_monitor/base.html" %} {% block title %}Security Events{% endblock %} {% block topbar_title %}โšก Security Events{% endblock %} {% block content %}
โœ• Clear
Security Events ({{ page_obj.paginator.count }} total)
{% for e in page_obj %} {% empty %} {% endfor %}
Time IP Type Severity Method Path Score ฮ” User
{{ e.timestamp|date:"M d H:i:s" }} {{ e.ip_address }} {{ e.get_event_type_display }} {% if e.extra_data.superuser_test %} ๐Ÿงช TEST {% endif %} {{ e.severity }} {{ e.method }} {{ e.path }} {% if e.threat_score_delta %}+{{ e.threat_score_delta|floatformat:0}}{% endif %} {{ e.user.username|default:"โ€”" }}
โœ… No events match your filters
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} โ† Prev {% endif %} Page {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next โ†’ {% endif %}
{% endif %}
{% endblock %}