{% extends "layouts/base.html" %} {% load static %} {% block title %} Account Overview {% endblock title %} {% block stylesheet %} {% endblock stylesheet %} {% block body_attributes %} {% endblock body_attributes %} {% block content %}
{% include "profiles/profile_info.html" %} {% include "profiles/profile_menu.html" %}

Profile Details

Edit Profile
{{ user.get_full_name }}
{% if user.profile.phone %} {{ user.profile.phone }} {% if user.profile.phone_verified %}Verified{% else %}Not Verified{% endif %} {% endif %}
{% if user.profile.country %} {{ user.profile.country.name }} {% endif %}
{% if user.is_authenticated %} {{user.last_login|date:"M d, Y H:i"}}{% endif %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}