21 lines
540 B
HTML
21 lines
540 B
HTML
{% extends "authorized.html" %}
|
|
{% block title %}Wish Lists{% endblock %}
|
|
{% block center %}
|
|
<h1>Users</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 %} |