{# File: plugins/admin/templates/admin/users/list.html #} {% extends 'core/base.html' %} {% block title %}Users – Admin – Nature In Pots{% endblock %} {% block content %}

Users

Create New User

{% for u in users %} {% endfor %}
ID Email Role Verified Excluded Status Joined Invites Remaining Actions
{{ u.id }} {{ u.email }} {{ u.role }} {{ '✓' if u.is_verified else '' }} {{ '✓' if u.excluded_from_analytics else '' }} {% if u.is_banned %} Permanently Banned {% elif u.suspended_until and u.suspended_until > utcnow %} Suspended until {{ u.suspended_until.strftime('%Y-%m-%d') }} {% else %} Active {% endif %} {{ u.created_at.strftime('%Y-%m-%d') }} {{ u.invites_remaining }} Edit Adjust Invites Invitations {% if u.is_deleted %}
{% else %}
{% endif %}
{% endblock %}