{% extends 'layouts/base.html' %} {% load static %} {% block title %}My Profile{% endblock title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% if profile.avatar %} {{ user_obj.get_full_name }} {% else %}
{% endif %}

{{ user_obj.get_full_name|default:user_obj.username }}

{{ user_obj.email }}

{% if profile.job_title %}

{{ profile.job_title }}{% if profile.company %} at {{ profile.company }}{% endif %}

{% endif %}
{% if user_obj.is_active %}Active{% else %}Inactive{% endif %} {% if user_obj.is_verified %} Verified {% endif %} {% if user_obj.is_staff %} Staff {% endif %}

Personal Information

Full Name {{ user_obj.get_full_name|default:"Not provided" }}
Email {{ user_obj.email }}
{% if user_obj.phone_number %}
Phone Number {{ user_obj.phone_number }}
{% endif %}
Username {{ user_obj.username|default:"Not set" }}
{% if profile.birth_date %}
Birth Date {{ profile.birth_date|date:"F d, Y" }} ({{ profile.get_age }} years old)
{% endif %} {% if profile.bio %}
Biography {{ profile.bio }}
{% endif %}
{% if profile.job_title or profile.company or profile.website %}

Professional Information

{% if profile.job_title %}
Job Title {{ profile.job_title }}
{% endif %} {% if profile.company %}
Company {{ profile.company }}
{% endif %} {% if profile.website %} {% endif %}
{% endif %}

Preferences

Timezone {{ profile.timezone }}
Language {{ profile.get_language_display }}
Theme {{ profile.get_theme_display }}
Profile Visibility {{ profile.get_profile_visibility_display }}
{{ user_obj.date_joined|timesince }}
Member Since
{{ user_obj.last_login|timesince|default:"Never" }}
Last Login

Account Status

Status {% if user_obj.is_active %}Active{% else %}Inactive{% endif %}
Email Verified {% if user_obj.is_verified %}Verified{% else %}Pending{% endif %}
Staff Access {% if user_obj.is_staff %}Yes{% else %}No{% endif %}

Notifications

Email Notifications {% if profile.email_notifications %}Enabled{% else %}Disabled{% endif %}
SMS Notifications {% if profile.sms_notifications %}Enabled{% else %}Disabled{% endif %}
General Notifications {% if profile.notifications_enabled %}Enabled{% else %}Disabled{% endif %}
{% endblock content %}