{% extends 'base.html' %} {% block title %}Profile - Django Boilerplate{% endblock %} {% block content %}
Your Profile
Edit Profile
{% if user.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 %} Yes {% else %} No {% endif %}

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

{% endblock %}