Files
test-iris-web-framework/app/templates/components/table_component.html
Eden Kirin e92a56c393 Initial
2023-10-26 13:25:10 +02:00

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 %}