{% extends "base.html" %} {% block title %}Registration Attempts - Admin{% endblock %} {% block content %}

Registration Attempts

Successful and failed signup attempts (rate-limited per IP).

{% for a in pagination.items %} {% else %} {% endfor %}
WhenIPUsernameStatusReason
{{ a.created_at.strftime('%Y-%m-%d %H:%M:%S') }} {{ a.ip_address }} {{ a.username_attempted or '—' }} {% if a.success %} success {% else %} failed {% endif %} {{ a.error_reason or '' }}
No registration attempts yet.
{% if pagination.pages > 1 %} {% endif %} {% endblock %}