My addresses
{% if addresses|length > 0 %}
{% include "salebox/address/list_static.html" %}
{% else %}
No addresses available
{% endif %}
Add a new address
{% if addresses|length > 0 %}
{% include "salebox/address/add_form.html" with form=address_form form_id='addaddress' %}
{% else %}
{% include "salebox/address/add_form.html" with form=address_form form_id='addaddress' hide_default=True %}
{% endif %}