{# File: plugins/user/templates/user/profile.html #} {% extends 'core/base.html' %} {% block title %}{{ user.username }}'s Profile – Nature In Pots{% endblock %} {% block content %}
Avatar

{{ user.username }} {% if is_self %} (You) {% endif %}

{% if user.is_verified %} Verified {% endif %} {% if user.role == 'admin' %} Admin {% else %} User {% endif %}
Quick Stats
Account Details

Role: {{ user.role.title() }}

{% if user.is_banned %}

Status: Banned

{% elif user.suspended_until %}

Status: Suspended until {{ user.suspended_until.strftime('%Y-%m-%d') }}

{% else %}

Status: Active

{% endif %} {# Future: Show recent activity, plants added, etc. #}
{% endblock %}