23 lines
609 B
HTML
23 lines
609 B
HTML
{% extends "authorized.html" %}
|
|
{% block title %}User Profile{% endblock %}
|
|
{% block center %}
|
|
<h1>{{ user.given_name }} Wishlist</h1>
|
|
<br/>
|
|
<h2>List</h2>
|
|
<a href="/userwishlist/add/{{ user.id }}">Add</a>
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Item</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user_wishlist_item in user_wishlist_items %}
|
|
<tr>
|
|
<td><a href="{{ user_wishlist_item.item_url }}">{{ user_wishlist_item.item }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock center %}
|