25 lines
700 B
HTML
25 lines
700 B
HTML
{% macro usersTable(users) %}
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>First name</th>
|
|
<th>Last name</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>
|
|
<a href="/users/{{ user.Id }}">{{ user.Id }}</a>
|
|
</td>
|
|
<td>{{ user.FirstName }}</td>
|
|
<td>{{ user.LastName }}</td>
|
|
<td>{{ user.Email }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endmacro %}
|