{% load i18n %} {% for hidden_field in billing_address_form.hidden_fields %} {{ hidden_field }} {% endfor %} {% if billing_address_form.non_field_errors %} {% endif %}
{{ billing_address_form.same_as_shipping }} {{ billing_address_form.same_as_shipping.label_tag }}
{% if billing_address_form.same_as_shipping.errors %} {% for error in billing_address_form.same_as_shipping.errors %}
{{ error }}
{% endfor %} {% endif %}
{{ billing_address_form.country.label_tag }} {{ billing_address_form.country }} {% if billing_address_form.country.errors %} {% for error in billing_address_form.country.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.country.help_text %} {{ billing_address_form.country.help_text }} {% endif %}
{% comment %}
{{ billing_address_form.name.label_tag }} {{ billing_address_form.name }} {% if billing_address_form.name.errors %} {% for error in billing_address_form.name.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.name.help_text %} {{ billing_address_form.name.help_text }} {% endif %}
{% endcomment %} {% comment %}
{{ billing_address_form.company.label_tag }} {{ billing_address_form.company }} {% if billing_address_form.company.errors %} {% for error in billing_address_form.company.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.company.help_text %} {{ billing_address_form.company.help_text }} {% endif %}
{% endcomment %}
{{ billing_address_form.address_1.label_tag }} {{ billing_address_form.address_1 }} {% if billing_address_form.address_1.errors %} {% for error in billing_address_form.address_1.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.address_1.help_text %} {{ billing_address_form.address_1.help_text }} {% endif %}
{{ billing_address_form.address_2.label_tag }} {{ billing_address_form.address_2 }} {% if billing_address_form.address_2.errors %} {% for error in billing_address_form.address_2.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.address_2.help_text %} {{ billing_address_form.address_2.help_text }} {% endif %}
{{ billing_address_form.locality.label_tag }} {{ billing_address_form.locality }} {% if billing_address_form.locality.errors %} {% for error in billing_address_form.locality.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.locality.help_text %} {{ billing_address_form.locality.help_text }} {% endif %}
{{ billing_address_form.state.label_tag }} {{ billing_address_form.state }} {% if billing_address_form.state.errors %} {% for error in billing_address_form.state.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.state.help_text %} {{ billing_address_form.state.help_text }} {% endif %}
{{ billing_address_form.postal_code.label_tag }} {{ billing_address_form.postal_code }} {% if billing_address_form.postal_code.errors %} {% for error in billing_address_form.postal_code.errors %}
{{ error }}
{% endfor %} {% endif %} {% if billing_address_form.postal_code.help_text %} {{ billing_address_form.postal_code.help_text }} {% endif %}