package view import "github.com/rjNemo/rentease/internal/view/layout" templ ListBookings(bookings []*ListBookingsViewModel) { @layout.BaseLayout() {

Bookings

Overview of the activity

for _, b := range bookings { }
ID Name Total (€) From To Platform
{ b.Id } { b.Name } { b.Total } { b.From } { b.To } { b.Platform }
} }