{% extends "customer/baseaccountpage.html" %} {% load i18n %} {% block tabcontent %}

Your Addresses

{% if addresses %}
{% for address in addresses %}
{% if address.is_default_for_shipping %} {% trans 'Default shipping address' %} {% endif %} {% if address.is_default_for_billing %} {% trans 'Default billing address' %} {% endif %}
{% for field in address.active_address_fields %} {% if forloop.counter == 1 %} {{ field }} {% else %} {{ field }} {% endif %}
{% endfor %}
{% comment %} {% endcomment %}
{% endfor %}
{% include "partials/pagination.html" %}
{% else %}

{% trans 'There are no addresses in your address book.' %}

{% endif %}
{% endblock tabcontent %}