{% extends "admin/base.html" %} {% block title %}Users{% endblock %} {% block page_title %}Users {{ total }}{% endblock %} {% block content %}
{% if users %}| Joined | Last login | Leagues | Status | |
|---|---|---|---|---|
| {{ user.email }} {% if user.is_site_admin %}admin{% endif %} {% if not user.email_verified_at %}unverified{% 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 search %}No users matching "{{ search }}".{% else %}No users yet.{% endif %}
{% endif %} {% endblock %}