{% extends 'base.html' %} {% block title %}Profile{% endblock %} {% block content %}

Your Profile

Edit Profile
{% if user.profile.avatar %} Profile Avatar {% else %}
👤
{% endif %}

{{ user.full_name|default:user.email }}

{{ user.email }}

{% if user.profile.bio %}
Bio:

{{ user.profile.bio }}

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

Location: {{ user.profile.location }}

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

Birth Date: {{ user.profile.birth_date }}

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

Phone: {{ user.profile.phone_number }}

{% endif %}

Member since: {{ user.date_joined|date:"M d, Y" }}

Account Status

Email verified:
{% if user.is_verified %} Verified {% else %} Unverified {% endif %}
Account type:

{{ user.groups.first.name|default:"User"|title }}

{% endblock %}