{% load i18n %} {% block shipping-info %}

{% trans "Shipping Information" %}

{{ form.copy_address }} {% if form.copy_address.errors %}*** {{ form.copy_address.errors|join:", " }}{% endif %}

{% trans "If different from the first and last names above" %} {{ form.ship_addressee }} {% if form.ship_addressee.errors %}*** {{ form.ship_addressee.errors|join:", "}}{% endif %} {{ form.ship_street1 }} {% if form.ship_street1.errors %}*** {{ form.ship_street1.errors|join:", " }}{% endif %} {{ form.ship_street2 }} {% if form.ship_street2.errors %}*** {{ form.ship_street2.errors|join:", " }}{% endif %} {{ form.ship_city }} {% if form.ship_city.errors %}*** {{ form.ship_city.errors|join:", " }}{% endif %} {% if country %} {% if form.fields.ship_state.choices %}

{{ form.ship_state }} {% endif %} {% else %} {{ form.ship_state }} {% endif %} {% if form.ship_state.errors %}*** {{ form.ship_state.errors|join:", " }}{% endif %} {{ form.ship_postal_code }} {% if form.ship_postal_code.errors %}*** {{ form.ship_postal_code.errors|join:", " }}{% endif %} {% if not country %} {{ form.ship_country }} {% if form.ship_country.errors %}*** {{ form.ship_country.errors|join:", " }}{% endif %} {% endif %} {% endblock %}