34 lines
892 B
Plaintext
34 lines
892 B
Plaintext
<tr id="employee_#(id)">
|
|
<td>#capitalized(firstName) #capitalized(lastName)</td>
|
|
<td style="width: 10%; text-align: center;">
|
|
#if(active):
|
|
<a class="toggle"
|
|
hx-patch="/employees/#(id)/toggle-active"
|
|
hx-target="#employee_#(id)"
|
|
hx-swap="outerHTML"
|
|
>
|
|
<img src="/images/toggle-on.svg" alt="Active">
|
|
</a>
|
|
#else:
|
|
<a class="toggle"
|
|
hx-patch="/employees/#(id)/toggle-active"
|
|
hx-target="#employee_#(id)"
|
|
hx-swap="outerHTML"
|
|
>
|
|
<img src="/images/toggle-off.svg" alt="Active">
|
|
</a>
|
|
#endif
|
|
</td>
|
|
<td style="width: 50px;">
|
|
<button hx-get="/employees/#(id)"
|
|
hx-target="#employee-detail"
|
|
hx-swap="outerHTML swap:1s"
|
|
hx-push-url="false"
|
|
hx-disabled-elt="this"
|
|
class="btn btn-detail"
|
|
>
|
|
›
|
|
</button>
|
|
</td>
|
|
</tr>
|