package view
type ListBookingsViewModel struct {
Id string
Url templ.SafeURL
From string
To string
Total string
Name string
Platform string
}
templ ListBookings(bookings []*ListBookingsViewModel) {
@BaseLayout() {
Bookings
Overview of the activity
| ID | Name | Total (€) | From | To | Platform |
|---|---|---|---|---|---|
| { b.Id } | { b.Name } | { b.Total } | { b.From } | { b.To } | { b.Platform } |