{% extends "authorized.html" %} {% block title %}User Wishlist{% endblock %} {% block center %} {% if my_wishlist %}
| Item | Link | State | Action | ||||||
|---|---|---|---|---|---|---|---|---|---|
| {{ person_wishlist_item.item }} | {% else %}{{ person_wishlist_item.item }} | {% endif %}URL | {% if person_wishlist_item.received_at > 0 %}Got it! | {% else %}Not yet! | {% endif %} {% if my_wishlist %} {% if person_wishlist_item.received_at > 0 %}Delete | {% else %}Received | {% endif %} {% else %} {% if person_wishlist_item.purchased_by == user.id %}Return | {% else if person_wishlist_item.purchased_by > 0 %}Purchased | {% else %}Bought | {% endif %} {% endif %}