{% extends "admin/base.html" %} {% block title %}User Management - Admin{% endblock %} {% block admin_content %}
| User | Role | Posts | Status | Joined | Actions | |
|---|---|---|---|---|---|---|
| {{ user.email }} | {% if user.is_admin %} Admin {% else %} User {% endif %} |
{{ user.posts.count() }}
{% if user.posts.filter_by(published=True).count() > 0 %}
({{ user.posts.filter_by(published=True).count() }} published) {% endif %} |
{% if user.is_active %} Active {% else %} Inactive {% endif %} | {{ user.created_at.strftime('%Y-%m-%d') }} |
No users have registered yet.