rentease/internal/views/line_item.templ
2024-02-23 09:34:35 +01:00

17 lines
411 B
Text

package views
import (
"strconv"
"github.com/rjNemo/rentease/internal/booking"
)
templ LineItem(item *booking.Item) {
<tr>
<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>
<td>{ strconv.FormatFloat(float64(item.Quantity)*item.Price,'f',2,64) }</td>
</tr>
}