8 lines
162 B
HTML
8 lines
162 B
HTML
<tr><th>name</th><th>email</th></tr>
|
|
{% for user in users.as_ref().unwrap() %}
|
|
<tr>
|
|
<td>{{ user.name }}</td>
|
|
<td>{{ user.email }}</td>
|
|
</tr>
|
|
{% endfor %}
|