{% extends "base.html" %} {% block title %}Login Attempts (7 days){% endblock %} {% block body_class %}themed-bg{% endblock %} {% block content %}

Security · Login Attempts (7 days)

Showing successful and failed logins from the last week. Records older than 7 days are automatically removed.

{% for a in attempts %} {% empty %} {% endfor %}
Date / Time Username IP Status
{{ a.timestamp|date:"Y-m-d H:i:s" }} {{ a.username }} {{ a.ip_address|default:"—" }} {% if a.success %} Success {% else %} Failed {% endif %}
No login attempts in the last 7 days.
{% endblock %}