{% set page_title = _("StopForumSpam") %} {% set active = "stopforumspam.admin" %} {% extends theme("management/management_layout.html") %} {% block breadcrumb %} {% endblock %} {% block management_content %} {%- from theme('_macros/form.html') import action_confirm -%} {%- from theme('_macros/pagination.html') import render_pagination -%}
{% trans %}Blocked Registrations{% endtrans %} {{ action_confirm( "clear-log", url_for("stopforumspam.admin_clear"), _("Clear log"), icon="fas fa-trash text-danger" ) }}
{% trans %}Username{% endtrans %}
{% trans %}Email{% endtrans %}
{% trans %}IP{% endtrans %}
{% trans %}Matched{% endtrans %}
{% trans %}Date{% endtrans %}
{% for entry in blocked.items %}
{{ entry.username }}
{{ entry.email }}
{{ entry.ip or "-" }}
{{ entry.matched }} ({{ "%.1f"|format(entry.confidence) }}%)
{{ entry.created_at|format_date }}
{% else %}
{% trans %}No registrations have been blocked yet.{% endtrans %}
{% endfor %}
{% include theme('_partials/confirm_dialog.html') %} {% endblock %}