{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}
{% if user.profile.image %} {{ user.username }} {% else %}
{{ user.username|slice:":1"|upper }}
{% endif %}

{{ user.get_full_name|default:user.username }}

@{{ user.username }}

{{ user.email|default:'No email added yet' }}

{% if profile.short_location %}

📍 {{ profile.short_location }}

{% endif %} {% if user.profile.is_seller %}

Seller Account: Active

{% endif %}
{{ profile_completion }}% checkout-ready account setup

{{ orders_count }}

Total Orders

{{ delivered_count }}

Delivered

{{ pending_count }}

In Progress

{{ wishlist_count }}

Wishlist

Rs. {{ total_spent|floatformat:2 }}

Total Spent

{{ user.date_joined|date:'Y' }}

Member Since

Saved Delivery Details

Phone {{ profile.phone|default:'Not set' }}
Quick location {{ profile.short_location|default:'Not set' }}
Default address {% if profile.formatted_delivery_address %}{{ profile.formatted_delivery_address|linebreaksbr }}{% else %}Not set{% endif %}
GPS status {% if profile.has_precise_location %}Saved{% else %}Manual only{% endif %}
Last GPS update {% if profile.location_updated_at %}{{ profile.location_updated_at|date:'M d, Y H:i' }}{% else %}-{% endif %}

What this unlocks

Email for order/payment communication
Phone ready for delivery calls
Default address prefilled at checkout
Precise GPS support for delivery help

Recent Delivery Shortcuts

These recent delivery points appear as quick-select shortcuts on the checkout page.

Update Default Address
{% if recent_delivery_points %}
{% for order in recent_delivery_points %}
{{ order.location_label|default:order.address|truncatechars:48 }} Order #{{ order.id }}

{{ order.address|linebreaksbr }}

{{ order.phone }} {{ order.created_at|date:'M d, Y' }} {% if order.has_precise_location %}GPS saved{% else %}Manual{% endif %}
{% endfor %}
{% else %}

Complete a checkout once and your recent delivery points will appear here as reusable shortcuts.

{% endif %}

Recent Orders

{% if recent_orders %} {% else %}

No orders yet.

{% endif %}
{% endblock %}