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

13 lines
194 B
Plaintext

<table id="user-table">
<tr>
<th>Username</th>
<th>Email</th>
</tr>
#for(user in users):
<tr>
<td>#(user.username)</td>
<td>#(user.email)</td>
</tr>
#endfor
</table>