jean-marie/backend/templates/userwishlists.html

21 lines
544 B
HTML

{% extends "authorized.html" %}
{% block title %}Wish Lists{% endblock %}
{% block center %}
<h1>Wishlists</h1>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">email</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td><a href="/userwishlist/{{ user.id }}">{{ user.name }}</a></td>
<td>{{ user.email }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock center %}