{% extends 'admin/index.html' %} {% from 'bootstrap5/pagination.html' import render_pagination %} {% block title %}Manage Users{% endblock %} {% block content %}
| Avatars | Name/username | Role | Bio | City | Date | Photos | Actions | |
|---|---|---|---|---|---|---|---|---|
| {{ user.name }} {{ user.username }} |
{{ user.email }} | {{ user.role.name }} | {{ user.bio }} | {{ user.location }} | {{ user.member_since }} | {{ user.photos_count }} | {% if user.role.name not in ['Administrator', 'Moderator'] %} {% if user.locked %} {% else %} {% endif %} {% if user.active %} {% else %} {% endif %} {% endif %} Email {% if current_user.is_admin %} Edit profile {% endif %} |