{% extends "admin/base.html" %} {% block title %}Manage Users - GJEE Admin{% endblock %} {% block content %}
| ID | Username | 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. | |||||