Files
hello-htmx/templates/fragment/user/table.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 %}