15 lines
247 B
Plaintext
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>
|