package views
import (
"fmt"
"strconv"
"github.com/rjNemo/rentease/internal/domains/booking"
)
templ BookingById(booking *booking.Booking, platforms []string) {
@BaseLayout() {
Booking ID: VFNI#{ fmt.Sprintf("%04s", strconv.Itoa(booking.Id)) }
Manage a booking
| # | Item | Quantity | Price | Payment Method | Payment Status |
|---|---|---|---|---|---|
| { strconv.Itoa(i+1) } | { item.Item } | { strconv.Itoa(item.Quantity) } | { item.Price } | { item.PaymentMethod } | { item.PaymentStatus } |