{% extends "admin/base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

Users

{% if q and field %}

Searching for users with {{field}} matching {{q}}

{% endif %}

{% for user in users %} {% endfor %}
ID User Email Website Country Admin Verified Hidden Banned
{{ user.id }} {{ user.name | truncate(32) }} {% if user.oauth_id %} Official {% endif %} {% if user.affiliation %} {{ user.affiliation | truncate(20) }} {% endif %} {% if user.website %} {% endif %} {% if user.country %} {{ lookup_country_code(user.country) }} {% endif %} {% if user.type == 'admin' %} admin {% endif %} {% if user.verified %} verified {% endif %} {% if user.hidden %} hidden {% endif %} {% if user.banned %} banned {% endif %}
{% if pages > 1 %}
Page
{% if curr_page != 1 %}<<<{% endif %} {% for page in range(1, pages + 1) %} {% if curr_page != page %} {{ page }} {% else %} {{ page }} {% endif %} {% endfor %} {% if curr_page != pages %}>>>{% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}