{% extends 'accounts/base.html' %} {% load static %} {% block title %}{{ user_detail.get_full_name|default:user_detail.email }} - User Details{% endblock %} {% block breadcrumb_items %} {% endblock %} {% block page_title %} User Details {% endblock %} {% block page_actions %}
{% if user.is_staff or user == user_detail %} Edit Profile {% endif %} {% if user.is_staff %}
{% endif %}
{% endblock %} {% block content %}
{% if user_detail.avatar %} Avatar {% else %}
{% endif %}

{{ user_detail.get_full_name|default:"No Name" }}

{{ user_detail.email }}

{% if user_detail.is_active %} Active {% else %} Inactive {% endif %} {% if user_detail.is_superuser %} Superuser {% elif user_detail.is_staff %} Staff {% else %} User {% endif %} {% if user_detail.email_verified %} Verified {% else %} Unverified {% endif %}
{{ user_detail.login_count|default:0 }}
Logins
{{ user_detail.activities_count|default:0 }}
Activities
{{ user_detail.notifications_count|default:0 }}
Notifications
Contact Information
{{ user_detail.email }} {% if user_detail.email_verified %} {% else %} {% endif %}
{% if user_detail.phone %}
{{ user_detail.phone }}
{% endif %} {% if user_detail.address %}
{{ user_detail.address }}
{% endif %} {% if user_detail.website %} {% endif %}
Account Details
{{ user_detail.id }}
{{ user_detail.username|default:"Not set" }}
{{ user_detail.first_name|default:"Not set" }}
{{ user_detail.last_name|default:"Not set" }}
{{ user_detail.date_joined|date:"F d, Y g:i A" }}
{% if user_detail.last_login %} {{ user_detail.last_login|date:"F d, Y g:i A" }} {% else %} Never logged in {% endif %}
{% if user_detail.is_active %} Active {% else %} Inactive {% endif %}
{% if user_detail.email_verified %} Verified {% else %} Unverified {% endif %}
{% if user.is_staff %}
Permissions & Groups
User Permissions
Groups
{% if user_detail.groups.all %} {% for group in user_detail.groups.all %} {{ group.name }} {% endfor %} {% else %}

No groups assigned

{% endif %}
{% endif %}
Recent Activity
{% if user.is_staff %} View All {% endif %}
{% if recent_activities %}
{% for activity in recent_activities %}
{{ activity.action }}

{{ activity.description }}

{{ activity.timestamp|date:"M d, Y g:i A" }}
{% endfor %}
{% else %}

No recent activity found

{% endif %}
{% if user_detail.bio or user_detail.preferences %}
Additional Information
{% if user_detail.bio %}
{{ user_detail.bio|linebreaks }}
{% endif %} {% if user_detail.preferences %}
{% for key, value in user_detail.preferences.items %} {{ key }}: {{ value }} {% endfor %}
{% endif %}
{% endif %}
{% if user.is_staff %} {% endif %} {% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}