<!-- SPDX-FileCopyrightText: 2023 jordi fita mas <jordi@tandem.blog> SPDX-License-Identifier: AGPL-3.0-only --> {{ define "title" -}} {{( pgettext "Prebookings" "title" )}} {{- end }} {{ define "breadcrumb" -}} {{- end }} {{ define "content" -}} {{- /*gotype: dev.tandem.ws/tandem/camper/pkg/booking.prebookingIndex*/ -}} {{ template "filters-toggle" }} <form class="filters" method="GET" action="/admin/prebookings" data-hx-target="main" data-hx-boost="true" data-hx-trigger="change,search,submit" aria-labelledby="filters-toggle" > {{ with .Filters }} <fieldset> {{ with .HolderName -}} <label> {{( pgettext "Holder name" "input" )}}<br> <input type="text" name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }} ><br> {{ template "error-message" . }} </label> {{- end }} {{ with .FromDate -}} <label> {{( pgettext "From date" "input" )}}<br> <input type="date" name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }} ><br> {{ template "error-message" . }} </label> {{- end }} {{ with .ToDate -}} <label> {{( pgettext "To date" "input" )}}<br> <input type="date" name="{{ .Name }}" value="{{ .Val }}" {{ template "error-attrs" . }} ><br> {{ template "error-message" . }} </label> {{- end }} </fieldset> {{ end }} {{ if .Filters.HasValue }} <a href="/admin/prebookings" class="button">{{( pgettext "Reset" "action" )}}</a> {{ end }} </form> <h2>{{( pgettext "Bookings" "title" )}}</h2> {{ if .Bookings -}} <table> <thead> <tr> <th scope="col">{{( pgettext "Reference" "header" )}}</th> <th scope="col">{{( pgettext "Arrival Date" "header" )}}</th> <th scope="col">{{( pgettext "Departure Date" "header" )}}</th> <th scope="col">{{( pgettext "Holder Name" "header" )}}</th> </tr> </thead> <tbody> {{ template "results.gohtml" . }} </tbody> </table> {{ else -}} <p>{{( gettext "No prebooking found." )}}</p> {{- end }} {{- end }}