{% extends "admin/base.html" %} {% block title %}Manage Users - GJEE Admin{% endblock %} {% block content %} {% for user in users %} {% else %} {% endfor %}
ID Username Email Admin Created Actions
{{ user.id }} {{ user.username }} {{ user.email }} {% if user.is_admin %} Yes {% else %} No {% endif %} {{ user.created_at.strftime('%Y-%m-%d') }} Edit {% if user.id != session.user_id %}
{% endif %}
No users found.
{% endblock %}