{% extends 'store/main.html' %} {% load static %} {% block content %}

Your Profile


Username: {{ user.username }}

Email: {{ user.email }}

Name: {{ customer.name }}

Phone Number: {{ customer.phone_number }}

Update Profile

Your Current Cart Items


{% if active_order %}

Order ID: {{ active_order.id }}

Status: {{ active_order.status }}

Items:

Total: ${{ active_order.get_cart_total }}

Proceed to Checkout {% else %}

You have nothing in your cart.

{% endif %}
{% endblock %} {% comment %} {% extends 'store/main.html' %} {% load static %} {% block content %}

Your Profile


Username: {{ user.username }}

Email: {{ user.email }}

Name: {{ customer.name }}

Phone Number: {{ customer.phone_number }}

Update Profile
{% endblock %} {% endcomment %}