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

Edit Profile

Manage your account info, saved phone number, address, and GPS delivery preference.

Back to Profile
{% csrf_token %} {{ form.latitude }} {{ form.longitude }} {{ form.location_accuracy_m }} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors }}
{% endif %}
{{ form.location_label }} {% if form.location_label.errors %}
{{ form.location_label.errors }}
{% else %}Shown in the navbar and used as your quick delivery area.{% endif %}
GPS delivery pin

Refresh your exact coordinates when you move or want more accurate delivery support.

{% if profile.has_precise_location %} GPS is saved for this account. Update it anytime if your delivery point changes. {% else %} No exact GPS saved yet. You can still use a manual address, but GPS improves delivery accuracy. {% endif %}

{% if profile.location_updated_at %} Last GPS update: {{ profile.location_updated_at|date:'M d, Y H:i' }} {% endif %}
{{ form.default_address }} {% if form.default_address.errors %}
{{ form.default_address.errors }}
{% endif %}
{{ form.bio }} {% if form.bio.errors %}
{{ form.bio.errors }}
{% endif %}
{% if profile.image %}
avatar
{% endif %} {{ form.image }} {% if form.image.errors %}
{{ form.image.errors }}
{% endif %}
Cancel
{% endblock %}