{% extends "admin/base.html" %} {% block title %}Users{% endblock %} {% block page_title %}Users {{ total }}{% endblock %} {% block content %} {% if users %}
{% for user in users %} {% endfor %}
Email Joined Last login Leagues Status
{{ user.email }} {% if user.is_site_admin %}admin{% endif %} {{ user.created_at.strftime('%b %d, %Y') }} {% if user.last_login_at %}{{ user.last_login_at.strftime('%b %d, %Y') }}{% else %}—{% endif %} {{ league_counts.get(user.id, 0) }} {% if user.disabled_at %} Disabled {% else %} Active {% endif %}
{% if total_pages > 1 %}
{% if page > 1 %} ← Prev {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} Next → {% endif %}
{% endif %} {% else %}

{% if search %}No users matching "{{ search }}".{% else %}No users yet.{% endif %}

{% endif %} {% endblock %}