{% extends "authorized.html" %} {% block title %}User Profile{% endblock %} {% block center %} {% if my_wishlist %}

My Wishlist

{% else %}

{{ user.given_name }} Wishlist

{% endif %}

List

{% if my_wishlist %} Add {% endif %} {% for user_wishlist_item in user_wishlist_items %} {% if my_wishlist %} {% if user_wishlist_item.received_at > 0 %} {% else %} {% endif %} {% else %} {% if user_wishlist_item.purchased_by > 0 %} {% else %} {% endif %} {% endif %} {% endfor %}
Item Action
{{ user_wishlist_item.item }}Got it!ReceivedPurchasedBought
{% endblock center %}