diff --git a/templates/v2/forms/f_make_poster_order.html b/templates/v2/forms/f_make_poster_order.html index 1d1aa9f..f6199b9 100644 --- a/templates/v2/forms/f_make_poster_order.html +++ b/templates/v2/forms/f_make_poster_order.html @@ -12,7 +12,7 @@
- {% include 'v2/widgets/w_select_country.html' with name='to_city' placeholder=placeholder_for_city %} + {% include 'v2/widgets/w_select_country.html' with name='to_city' placeholder=placeholder_for_city initial=form.initial.to_city %} {% if form.errors.to_city %}
{{ form.errors.to_city.0 }}
{% endif %}
@@ -26,7 +26,7 @@
- {% include 'v2/widgets/w_daterangepicker.html' with name='arrival_DT' %} + {% include 'v2/widgets/w_daterangepicker.html' with name='arrival_DT' initial=form.initial.arrival_DT %} {% if form.errors.arrival_DT %}
{{ form.errors.arrival_DT.0 }}
{% endif %}
diff --git a/templates/v2/widgets/w_daterangepicker.html b/templates/v2/widgets/w_daterangepicker.html index cccf15d..78e6342 100644 --- a/templates/v2/widgets/w_daterangepicker.html +++ b/templates/v2/widgets/w_daterangepicker.html @@ -3,7 +3,7 @@
- +
\ No newline at end of file