180 lines
8.3 KiB
Plaintext
180 lines
8.3 KiB
Plaintext
<!--
|
||
SPDX-FileCopyrightText: 2023 jordi fita mas <jordi@tandem.blog>
|
||
SPDX-License-Identifier: AGPL-3.0-only
|
||
-->
|
||
{{ define "title" -}}
|
||
{{( pgettext "Booking" "title" )}}
|
||
{{- end }}
|
||
|
||
{{ define "content" -}}
|
||
{{- /*gotype: dev.tandem.ws/tandem/camper/pkg/booking.publicPage*/ -}}
|
||
<h2>{{( pgettext "Booking" "title" )}}</h2>
|
||
{{ with .Form -}}
|
||
<form action="/{{ currentLocale }}/booking" method="post">
|
||
<fieldset>
|
||
<legend>{{( pgettext "Customer Details" "title" )}}</legend>
|
||
{{ with .FullName -}}
|
||
<label>
|
||
{{( pgettext "Full name" "input" )}}<br>
|
||
<input type="text" required autocomplete="name" minlength="2"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Address -}}
|
||
<label>
|
||
{{( pgettext "Address (optional)" "input" )}}<br>
|
||
<input type="text" autocomplete="billing street-address"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .PostalCode -}}
|
||
<label>
|
||
{{( pgettext "Postcode (optional)" "input" )}}<br>
|
||
<input type="text" autocomplete="billing postal-code"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .City -}}
|
||
<label>
|
||
{{( pgettext "Town or village (optional)" "input" )}}<br>
|
||
<input type="text"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Country -}}
|
||
<label>
|
||
{{( pgettext "Country" "input" )}}<br>
|
||
<select name="{{ .Name }}"
|
||
required autocomplete="country">
|
||
<option>{{( gettext "Choose a country" )}}</option>
|
||
{{ template "error-attrs" . }}>{{ template "list-options" . }}
|
||
</select><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Email -}}
|
||
<label>
|
||
{{( pgettext "Email" "input" )}}<br>
|
||
<input type="email" required autocomplete="email"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Phone -}}
|
||
<label>
|
||
{{( pgettext "Phone" "input" )}}<br>
|
||
<input type="tel" required autocomplete="tel"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
</fieldset>
|
||
<fieldset>
|
||
<legend>{{( pgettext "Party Details" "title" )}}</legend>
|
||
{{ with .Adults -}}
|
||
<label>
|
||
{{( pgettext "Adults" "input" )}}<br>
|
||
<input type="number" required min="1"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Teenagers -}}
|
||
<label>
|
||
{{( pgettext "Teenagers (from 11 to 16 years old)" "input" )}}<br>
|
||
<input type="number" required min="0"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Children -}}
|
||
<label>
|
||
{{( pgettext "Children (up to 10 years old)" "input" )}}<br>
|
||
<input type="number" required min="0"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .Dogs -}}
|
||
<label>
|
||
{{( pgettext "Dogs" "input" )}}<br>
|
||
<input type="number" required min="0"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
</fieldset>
|
||
<fieldset>
|
||
<legend>{{( pgettext "Accomodation" "title" )}}</legend>
|
||
{{ range .CampsiteType.Options -}}
|
||
<label><input type="radio" name="{{ $.Form.CampsiteType.Name }}" value="{{ .Value }}"
|
||
> {{ .Label }}</label><br>
|
||
{{- end }}
|
||
</fieldset>
|
||
{{ range .CampsiteType.Options -}}
|
||
{{ $options := index $.Form.CampsiteTypeOptions .Value }}
|
||
{{ if $options -}}
|
||
<fieldset>
|
||
<legend>{{ .Label }}</legend>
|
||
{{ range $options -}}
|
||
<label>
|
||
{{ .Label }}<br>
|
||
<input type="number" required
|
||
name="{{ .Input.Name }}" value="{{ .Input.Val }}"
|
||
min="{{ .Min }}" max="{{ .Max }}"
|
||
{{ template "error-attrs" .Input }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
</fieldset>
|
||
{{- end }}
|
||
{{- end }}
|
||
<fieldset>
|
||
<legend>{{( pgettext "Booking Period" "title" )}}</legend>
|
||
{{ with .ArrivalDate -}}
|
||
<label>
|
||
{{( pgettext "Arrival date" "input" )}}<br>
|
||
<input type="date" required
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .DepartureDate -}}
|
||
<label>
|
||
{{( pgettext "Departure date" "input" )}}<br>
|
||
<input type="date" required
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .AreaPreferences -}}
|
||
<label>
|
||
{{( pgettext "Area preferences (optional)" "input" )}}<br>
|
||
<input type="text"
|
||
name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }}
|
||
><br>
|
||
</label>
|
||
{{- end }}
|
||
{{ with .ACSICard -}}
|
||
<label>
|
||
<input type="checkbox" name="{{ .Name }}" {{ if .Checked}}checked{{ end }}
|
||
{{ template "error-attrs" . }}
|
||
> {{( pgettext "ACSI card? (optional)" "input" )}}</label><br>
|
||
{{- end }}
|
||
{{ with .Agreement -}}
|
||
<label>
|
||
<input type="checkbox" required name="{{ .Name }}" {{ if .Checked}}checked{{ end }}
|
||
{{ template "error-attrs" . }}
|
||
> {{( pgettext "I have read and I accept the reservation conditions" "input" )}}</label><br>
|
||
{{- end }}
|
||
</fieldset>
|
||
<footer>
|
||
<button type="submit">{{( pgettext "Book" "action" )}} <span>→</span></button>
|
||
</footer>
|
||
</form>
|
||
{{- end }}
|
||
{{- end }}
|