{% extends "shop/base.html" %} {% load i18n %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Account" %}
  • {% trans "Update Profile" %}
  • {% endblock %} {% block extra-head %} {% include "contact/_contact_info_form.html" %} {% endblock %} {% block content %}

    {% trans "Your Profile" %}

    {% if form.non_field_errors %}

    {% trans "Please correct the following error:" %}

    {{ form.non_field_errors }} {% endif %}
    {{ form.next }} {% if form.email.errors %}{% endif %} {% if form.first_name.errors %}{% endif %} {% if form.last_name.errors %}{% endif %} {% if form.organization.errors %}{% endif %} {% if form.dob.errors %}{% endif %} {% if form.phone.errors %}{% endif %} {% if show_newsletter %} {% if form.newsletter.errors %}{% endif %} {% else %} {% endif %} {% block billing-info %}{% include "contact/_contact_info_form_billing.html" %}{% endblock %} {% block shipping-info %}{% include "contact/_contact_info_form_shipping.html" %}{% endblock %}

    {% trans "You'll need to fill out at least the fields with a *" %}

    {% trans "Basic Information" %}

    {{ form.email }}
     *** {{ form.email.errors|join:", " }}
    {{ form.first_name }}
     *** {{ form.first_name.errors|join:", " }}
    {{ form.last_name }}
     *** {{ form.last_name.errors|join:", " }}
    {{ form.organization }}
     *** {{ form.organization.errors|join:", " }}
    {{ form.dob }}
     *** {{ form.dob.errors|join:", " }}
    {{ form.phone }}
     *** {{ form.phone.errors|join:", " }}
    {{ form.newsletter }}
     *** {{ form.newsletter.errors|join:", " }}
    {% endblock %}