{% include 'admin/partials/header.html' %}{% include 'admin/partials/sidebar.html' %}
MEMBER ENFORCEMENT

Warnings & Bans

Issue warnings, apply scoped restrictions, revoke actions, or clean obvious spam accounts.

{% if $members %}

Matching members

Select an account for an action.

{% foreach $members as $member %}
{{ strtoupper(substr($member['username'],0,1)) }}
{{ $member['username'] }}{{ $member['email'] }} · {{ $member['role'] }}
{% endforeach %}
{% endif %}

Active warnings

Point-based notices currently on member accounts.

{{ count($warnings) }}
{% if $warnings %}{% foreach $warnings as $warning %}
{{ $warning['username'] }}

{{ $warning['reason'] }}

{{ $warning['points'] }} points · by {{ $warning['moderator_name'] ?: 'Staff' }} · {{ $warning['created_at'] }}
{% endforeach %}{% else %}
No active warnings.
{% endif %}

Active restrictions

Account, posting, PM, and live-chat restrictions.

{{ count($bans) }}
{% if $bans %}{% foreach $bans as $ban %}
{{ $ban['username'] }} {{ strtoupper($ban['ban_type']) }}

{{ $ban['reason'] }}

by {{ $ban['moderator_name'] ?: 'Staff' }} · {{ $ban['expires_at'] ?: 'Permanent' }}
{% endforeach %}{% else %}
No active restrictions.
{% endif %}
{% include 'admin/partials/footer.html' %}