{% extends "customer/baseaccountpage.html" %} {% load i18n %} {% block extra_breadcrumbs %}
  • {% trans 'Address book' %}
  • {% endblock %} {% block tabcontent %}

    Add a new address

    {% if form.is_bound and not form.is_valid %}
    {% trans "Oops! We found some errors" %} - {% trans "please check the error messages below and try again" %}
    {% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}
    {{ error }}
    {% endfor %} {% endif %}
    {% if not method == "get" %}{% csrf_token %}{% endif %} {% include 'partials/address_form.html' %}
    {% trans "or" %} {% trans "cancel" %}.
    {% endblock tabcontent %}