{% extends "base.html" %} {% block title %}Users{% endblock %} {% block page_title %}Users{% endblock %} {% block content %}

{{ total_users }} total users

{% if search %} Clear {% endif %}
{% if search %}

Showing {{ users | length }} results for "{{ search }}"

{% endif %}
{% for u in users %} {% endfor %} {% if not users %} {% endif %}
User Session Profile Solved Badges Last Active Status
{{ u.display_name or u.email or u.user_id[:12] + '...' }} {{ u.email or u.user_id }}
{% if u.session_type == 'perm' %} AUTH {% elif u.session_type == 'temp' %} TEMP {% else %} - {% endif %} {% if u.has_profile %} {% else %} - {% endif %} {% if u.completed > 0 %} {{ u.completed }}/{{ u.attempted }} {% else %} {{ u.completed }}/{{ u.attempted }} {% endif %} {% if u.badges > 0 %} {{ u.badges }} {% else %} 0 {% endif %} {% if u.last_active %} {{ u.last_active.strftime('%b %d, %H:%M') }} {% else %} - {% endif %} {% if u.is_active %} {% else %} {% endif %}
{% if search %}No users matching "{{ search }}"{% else %}No users yet{% endif %}
{% endblock %}