{% extends "base.html" %} {% block content %}
Customers locked out by the Anti-Abuse Throttle. Tune it in Customization.
{% if flash_msg %}| Identifier | Unlocks in | Action |
|---|---|---|
{{ r.key }} |
{{ (r.seconds_remaining // 60 + (1 if r.seconds_remaining % 60 else 0)) }} min |
No customers currently locked.
{% endif %}Customers with empty attempts that haven't hit the lockout yet. The counter decays on its own.
{% if counters %}| Identifier | Fails | Action |
|---|---|---|
{{ r.key }} |
{{ r.fail_count }} |
No active fail counters.
{% endif %}Log of lockouts and unlocks, auto and manual. Expirations aren't logged.
{% if log_rows %}| When | Identifier | Event |
|---|---|---|
| {{ r.ts_unix | localtime }} | {{ r.key }} |
{% if r.event == 'locked' %}
Auto-Locked
{% elif r.event == 'manual_lock' %}
Manual Lock
{% elif r.event == 'unlocked' %}
Unlocked
{% else %}
{{ r.event }}
{% endif %}
|
No abuse events recorded yet.
{% endif %}