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

My Wishlist

{% else %}

{{ person.given_name }} Wishlist

{% endif %}

List

{% if my_wishlist %} Add {% endif %}
{% for person_wishlist_item in person_wishlist_items %} {% if my_wishlist %} {% else %} {% endif %} {% if person_wishlist_item.received_at > 0 %} {% else %} {% endif %} {% if my_wishlist %} {% if person_wishlist_item.received_at > 0 %} {% else %} {% endif %} {% else %} {% if person_wishlist_item.purchased_by == user.id %} {% else if person_wishlist_item.purchased_by > 0 %} {% else %} {% endif %} {% endif %} {% endfor %}
Item Link State Action
{{ person_wishlist_item.item }}{{ person_wishlist_item.item }}URLGot it!Not yet!DeleteReceivedReturnPurchasedBought
{% endblock center %}