mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
17 lines
411 B
Text
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>
|
|
}
|