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

{% trans "Billing Information" %}

{% trans "If different from the first and last names above" %}

{{ form.addressee }} {% if form.addressee.errors %}*** {{ form.addressee.errors|join:", "}}{% endif %} {{ form.street1 }} {% if form.street1.errors %}*** {{ form.street1.errors|join:", " }}{% endif %} {{ form.street2 }} {% if form.street2.errors %}*** {{ form.street2.errors|join:", " }}{% endif %} {{ form.city }} {% if form.city.errors %}*** {{ form.city.errors|join:", " }}{% endif %} {% if country %} {% if form.fields.state.choices %} {{ form.state }} {% endif %} {% else %} {{ form.state }} {% endif %} {% if form.state.errors %}*** {{ form.state.errors|join:", " }}{% endif %} {{ form.postal_code }} {% if form.postal_code.errors %}*** {{ form.postal_code.errors|join:", " }}{% endif %} {% if not country %} {{ form.country }} {% if form.country.errors %}*** {{ form.country.errors|join:", " }}{% endif %} {% endif %} {% endblock %}