Files
vapor-po/Resources/Views/users/table.leaf

28 lines
643 B
Plaintext

<table id="user-table">
<thead>
<tr>
<th>Username</th>
<th>Email</th>
<th>#extend("btn/toggle-form")</th>
</tr>
</thead>
<tbody>
#for(user in users):
<tr id="user_#(user.id)">
<td>#(user.username)</td>
<td>#(user.email)</td>
<td style="width: 50px;">
<a class="btn btn-delete"
hx-delete="/users/#(user.id)"
hx-target="#user-table"
hx-swap="outerHTML"
hx-confirm="Are you sure you want to delete this user?"
>
<img src="images/trash-can.svg" alt="Delete">
</a>
</td>
</tr>
#endfor
</tbody>
</table>