{% extends 'base.html' %} {% block title %}Manage Users | Admin | {{ settings.site_name }}{% endblock %} {% block content %}

Manage Users

Add User
{% if users %}
{% for user in users %} {% endfor %}
Name Email Role Status Created Actions
{{ (user.name or user.username)[0]|upper }}
{{ user.name or user.username }} {% if user.id == current_user.id %} You {% endif %}
{{ user.email }} {% if user.is_admin %} Admin {% else %} Editor {% endif %} {% if user.is_active %} Active {% else %} Inactive {% endif %} {{ user.created_at.strftime('%b %d, %Y') }} {% if user.id != current_user.id %}
{% endif %}
{% else %}

No Users Found

Start by adding your first user.

Add User
{% endif %}
{% endblock %}