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

15 lines
247 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):
#extend("users/table-row", user)
#endfor
</tbody>
</table>