{% extends "admin/base.html" %} {% block stylesheets %} {% endblock %} {% block content %}
|
ID | User | Country | Admin | Verified | Hidden | Banned | |
---|---|---|---|---|---|---|---|---|
|
{{ user.id }} | {{ user.name | truncate(32) }} {% if user.bracket_id %} {{ user.bracket.name }} {% endif %} {% if user.oauth_id %} Official {% endif %} {% if user.website %} {% endif %} {% if user.affiliation %} {{ user.affiliation | truncate(20) }} {% endif %} | {% if user.email %} {{ user.email | truncate(32) }} {% 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 %} |