{% extends 'core/base.html' %} {% block title %}Users – Admin – Nature In Pots{% endblock %} {% block content %}
ID | Role | Verified | Excluded | Status | Joined | 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') }} | Edit {% if u.is_deleted %} {% else %} {% endif %} |