rentease/internal/views/line_item.templ

17 lines
364 B
Text

package views
import (
"strconv"
"github.com/rjNemo/rentease/internal/domains/booking"
)
templ LineItem(item *booking.Item) {
<tr>
<th scope="row"></th>
<td>{ item.Item }</td>
<td>{ strconv.Itoa(item.Quantity) }</td>
<td>{ strconv.FormatFloat(item.Price, 'f', 2, 64) }</td>
<td>{ item.PaymentMethod }</td>
<td>{ item.PaymentStatus }</td>
</tr>
}