{% extends "admin/base.html" %} {% block title %}User Management - Admin{% endblock %} {% block admin_content %}

Users

{% if users.items %}
Users ({{ users.total }})
{% for user in users.items %} {% endfor %}
User Email 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') }}
{% if not user.is_admin or current_user.id != user.id %} {% endif %}
{% if users.pages > 1 %} {% endif %} {% else %}
No users found

No users have registered yet.

{% endif %} {% endblock %}