{% extends "admin/base.html" %} {% block title %}Users - Admin Panel{% endblock %} {% block content %}
User Management
{% for user in users.items %} {% endfor %}
ID Username Email Status Role Last Login Created Actions
#{{ user.id }}
{{ user.username }}
{{ user.email }} {{ 'Active' if user.is_active else 'Inactive' }} {{ 'Admin' if user.is_admin else 'User' }} {{ user.last_login.strftime('%m/%d/%Y %H:%M') if user.last_login else 'Never' }} {{ user.created_at.strftime('%m/%d/%Y') }}
{% if user.id != current_user.id %} {% endif %}
{% if users.pages > 1 %}
Showing {{ users.items|length }} of {{ users.total }} users
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %}