{% extends "base.html" %} {% block title %}Registration Attempts - Admin{% endblock %} {% block content %}
Successful and failed signup attempts (rate-limited per IP).
| When | IP | Username | Status | Reason |
|---|---|---|---|---|
{{ 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. | ||||