21 lines
643 B
HTML
21 lines
643 B
HTML
{% extends "authorized.html" %}
|
|
{% block title %}Wish Lists{% endblock %}
|
|
{% block center %}
|
|
<h1>Wishlists</h1>
|
|
<table data-toggle="table" class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th data-sortable="true" data-field="name" scope="col">Name</th>
|
|
<th data-sortable="true" data-field="email" 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 %} |