mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-12 05:36:49 +00:00
16 lines
428 B
Text
16 lines
428 B
Text
package view
|
|
|
|
templ LineItem(item *ItemViewModel) {
|
|
<tr id="line-item">
|
|
<td>{ item.Item }</td>
|
|
<td>{ item.Quantity }</td>
|
|
<td>{ item.Price }</td>
|
|
<td>{ item.PaymentMethod }</td>
|
|
<td>{ item.PaymentStatus }</td>
|
|
<td>{ item.SubTotal }</td>
|
|
<td>
|
|
<button class="secondary">Edit</button>
|
|
<button class="secondary" hx-post={ item.ItemUrl } hx-target="#line-item" hx-swap="outerHTML">Paid</button>
|
|
</td>
|
|
</tr>
|
|
}
|