mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-10 04:36:50 +00:00
17 lines
356 B
Text
17 lines
356 B
Text
package views
|
|
|
|
import (
|
|
"strconv"
|
|
"github.com/rjNemo/rentease/internal/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>
|
|
}
|