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

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