{# File: plugins/user/templates/user/profile.html #} {% extends 'core/base.html' %} {% block title %}{{ user.username }}'s Profile – Nature In Pots{% endblock %} {% block content %}
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. #}