diff --git a/templates/v2/forms/f_create_customer_route.html b/templates/v2/forms/f_create_customer_route.html index da31321..e65d797 100644 --- a/templates/v2/forms/f_create_customer_route.html +++ b/templates/v2/forms/f_create_customer_route.html @@ -16,12 +16,12 @@
- {% include 'v2/widgets/w_select_country.html' with name='from_city' placeholder=placeholder_for_city initial=form.initial.from_city %} + {% include 'v2/widgets/w_select_country.html' with name='from_city' placeholder=placeholder_for_city initial=form.instance.from_city %} {% if form.errors.from_city %}
{{ form.errors.from_city.0 }}
{% endif %}
- {% include 'v2/widgets/w_select_country.html' with name='to_city' placeholder=placeholder_for_city initial=form.initial.to_city %} + {% include 'v2/widgets/w_select_country.html' with name='to_city' placeholder=placeholder_for_city initial=form.instance.to_city %} {% if form.errors.to_city %}
{{ form.errors.to_city.0 }}
{% endif %}