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

Security · Login Attempts for the last 7 Days

{% 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 %}