{% extends "layouts/dashboard.html" %} {% load static %} {% load accounts_tags %} {% block title %}User Profile - Adtlas{% endblock %} {% block extra_css %} {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% if user.profile.avatar %} Profile Avatar {% else %}
{{ user.first_name|first }}{{ user.last_name|first }}
{% endif %}

{{ user.get_full_name }}

{{ user.email }}

{% if user.profile.job_title %}

{{ user.profile.job_title }}

{% endif %} {% if user.profile.company %}

{{ user.profile.company }}

{% endif %}
Profile Information
Email:
{{ user.email }} {% if user.is_verified %} Verified {% else %} Unverified {% endif %}
{% if user.phone_number %}
Phone:
{{ user.phone_number }}
{% endif %} {% if user.profile.bio %}
Bio:
{{ user.profile.bio }}
{% endif %}
Member Since:
{{ user.date_joined|date:"M d, Y" }}
Last Login:
{% if user.last_login %} {{ user.last_login|date:"M d, Y H:i" }} {% else %} Never {% endif %}
{% if user.last_login_ip %}
Last IP:
{{ user.last_login_ip }}
{% endif %}
{% get_user_roles user as user_roles %} {% if user_roles %}
User Roles
{% for user_role in user_roles %} {{ user_role.role.name }} {% endfor %}
{% endif %}
Recent Activities
Last 10 activities
{% for activity in recent_activities %}
{{ activity.action|title }}

{{ activity.description }}

{% if activity.ip_address %} IP: {{ activity.ip_address }} {% endif %}
{{ activity.created_at|date:"M d, H:i" }}
{% empty %}

No recent activities.

{% endfor %}
Active Sessions
{{ active_sessions.count }} active
{% for session in active_sessions %}
Current Session

{% if session.ip_address %}IP: {{ session.ip_address }}{% endif %}

Last activity: {{ session.last_activity|date:"M d, H:i" }}
{% empty %}

No active sessions.

{% endfor %}
Profile Completion
{{ completion_percentage }}%
Completed Items:
  • Basic Information
  • {% if user.is_verified %}
  • Email Verified
  • {% endif %} {% if user.phone_number %}
  • Phone Number
  • {% endif %} {% if user.profile.avatar %}
  • Profile Picture
  • {% endif %}
Pending Items:
    {% if not user.is_verified %}
  • Email Verification
  • {% endif %} {% if not user.phone_number %}
  • Phone Number
  • {% endif %} {% if not user.profile.avatar %}
  • Profile Picture
  • {% endif %} {% if not user.profile.bio %}
  • Bio Description
  • {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}