{% extends 'base.html' %} {% load crispy_forms_tags %} {% block body_main %} {% include 'profile/_header.html' with active='account' %}
Username: {{ user }}
First name: {{ user.first_name }}
Last name: {{ user.last_name }}
Email: {{ user.email }}
Details: {{ user.userprofile.description }}
Phone: {{ user.userprofile.phone }}
City: {{ user.userprofile.city }}
{% if user.userprofile.image %}
Photo:
{% endif %}
Points: {{ user.userprofile.points }}
Pending Points: {{ user.userprofile.pending_points }}
Edit Account {% endblock %}