{% trans "Please complete the following information in order to submit your order." %}
{% if form.errors %}
{% blocktrans count form.errors|length as count %}Please correct the following error:{% plural %}Please correct the following errors:{% endblocktrans %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% endif %}
{% block shipping_table %}
{% if form.shipping_description or form.shipping.field.choices|length_is:1 %}
{% else %}
{% endif %}
{{ form.shipping }}
{% if form.shipping_description %} {{ form.shipping_description }}{% endif %}
{% if form.shipping.errors %}*** {{ form.shipping.errors|join:", " }}{% endif %}
{% endblock %}
{% endif %}
{% else %}
{% trans "There are no items in this order to ship." %}