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 %}