{% extends 'base.html' %} {% load static %} {% block content %}

⚙️ Settings

Manage your account preferences, saved delivery details, and device-ready shopping experience.

🎨 Appearance

Customize how the app looks on your device.

🌐 Language

Select your preferred language.

{% csrf_token %}

📍 Delivery Location

Save your default phone, address, and optional GPS location for faster and more accurate checkout.

{% if user.is_authenticated %}
{% csrf_token %} {{ location_form.latitude }} {{ location_form.longitude }} {{ location_form.location_accuracy_m }}
{{ location_form.phone }} {% if location_form.phone.errors %}
{{ location_form.phone.errors }}
{% endif %}
{{ location_form.location_label }} {% if location_form.location_label.errors %}
{{ location_form.location_label.errors }}
{% else %}Shown in the navbar and used as your saved delivery area.{% endif %}
Browser GPS

Use current device location to improve support for hard-to-find delivery points.

{% if location_saved_at %} GPS was last refreshed on {{ location_saved_at|date:'M d, Y H:i' }}. {% else %} No exact GPS saved yet. Manual delivery details still work. {% endif %}

{{ location_form.default_address }} {% if location_form.default_address.errors %}
{{ location_form.default_address.errors }}
{% endif %}
Your latest delivery addresses from previous orders will also appear as quick-select shortcuts during checkout.
{% else %}
{% csrf_token %}
{% endif %}

👤 Account

Update your profile information and manage your account.

{% if user.is_authenticated %} Go to Profile {% else %} Login to manage account {% endif %}
{% endblock %}