{% extends "base.html" %} {% block title %}Users · Admin · myboker.org{% endblock %} {% block sidebar %}{% include "_internal_sidebar.html" %}{% endblock %} {% block page_class %}page--app{% endblock %} {% block content %}

Users

Search accounts by email and inspect account status.

Matching users

{{ pagination.start }}-{{ pagination.end }} of {{ pagination.total }}
{% for user in users %} {% else %} {% endfor %}
Email Status Verified Created
{{ user.email }} {% if user.is_site_admin %}Admin{% endif %} {% if user.disabled_at %}Disabled{% else %}Active{% endif %} {% if user.email_verified_at %}Yes{% else %}No{% endif %} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else 'Unknown' }} View
No users found.
{% if pagination.pages > 1 %}
{% if pagination.has_prev %} Previous {% else %} Previous {% endif %} Page {{ pagination.page }} of {{ pagination.pages }} {% if pagination.has_next %} Next {% else %} Next {% endif %}
{% endif %}
{% endblock %}