rentease/internal/view/line_item.templ

17 lines
410 B
Text

package view
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>
}