{% load i18n %}
{% for error in location_form.non_field_errors %}

{{ error }}

{% endfor %}
{{ location_form.name }} {% for error in location_form.name.errors %}

{{ error }}

{% endfor %}
{{ location_form.address }} {% for error in location_form.address.errors %}

{{ error }}

{% endfor %}
{{ location_form.city }} {% for error in location_form.city.errors %}

{{ error }}

{% endfor %}
{{ location_form.zip_code }} {% for error in location_form.zip_code.errors %}

{{ error }}

{% endfor %}
{{ location_form.country }} {% for error in location_form.country.errors %}

{{ error }}

{% endfor %}