Add an empty value to the “choose country” option in booking form
Otherwise, the value is the same as the label
This commit is contained in:
parent
f2b24a83a3
commit
846ca0bc5c
|
@ -201,7 +201,7 @@
|
||||||
<select name="{{ .Name }}"
|
<select name="{{ .Name }}"
|
||||||
{{ template "error-attrs" . }}
|
{{ template "error-attrs" . }}
|
||||||
>
|
>
|
||||||
<option>{{( gettext "Choose a country" )}}</option>
|
<option value="">{{( gettext "Choose a country" )}}</option>
|
||||||
{{ template "list-options" . }}
|
{{ template "list-options" . }}
|
||||||
</select><br>
|
</select><br>
|
||||||
{{ template "error-message" . }}
|
{{ template "error-message" . }}
|
||||||
|
|
Loading…
Reference in New Issue