{% extends 'base.html' %} {% block title %}Manage Users | Admin | {{ settings.site_name }}{% endblock %} {% block content %} Dashboard Users Manage Users Add User {% if users %} Name Email Role Status Created Actions {% for user in users %} {{ (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 %} {% endfor %} {% else %} No Users Found Start by adding your first user. Add User {% endif %} {% endblock %}
Start by adding your first user.