{% extends 'base.html' %} {% block title %}Profile - Django Boilerplate{% endblock %} {% block content %}
{{ 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" }}
Email verified: {% if user.is_verified %} Yes {% else %} No {% endif %}
Account type: {{ user.groups.first.name|default:"User"|title }}