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

User Management

Search members, review groups, and manage profile and communication settings.

Create user
Total members{{ number_format($stats['total']) }}All registered accounts
Online now{{ number_format($stats['online']) }}Active in the last 15 minutes
Birthdays visible{{ number_format($stats['birthdays']) }}Shown on profiles and calendar
Staff{{ number_format($stats['staff']) }}Moderator or administrator groups

Members

{{ count($members) }} account(s) match this view.

MemberGroupPostsBirthdayLast active
{% foreach $members as $member %}
{% if $member['avatar_url'] %}{% else %}{{ strtoupper(substr($member['username'],0,1)) }}{% endif %}{{ $member['username'] }}{{ $member['email'] }}{{ $member['group_name'] ?: $member['role'] }}{{ number_format($member['post_count']) }}{% if $member['birthday'] %}{{ date('M j, Y',strtotime($member['birthday'])) }}{% else %}Not set{% endif %}{{ $member['last_seen_at'] ?: 'Never' }}Manage
{% endforeach %}{% if !$members %}
No members matched your search.
{% endif %}
{% include 'admin/partials/footer.html' %}