{% extends 'core_ui/base.html' %} {% block title %}Users – Admin – Nature In Pots{% endblock %} {% block content %}

Users

Create New User

{% for u in users %} {% endfor %}
IDEmailRole VerifiedExcludedStatus JoinedActions
{{ 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') }} Edit {% if u.is_deleted %}
{% else %}
{% endif %}
{# --- AJAX search script --- #} {% endblock %}