{% 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 %} {% if person_wishlist_item.item_url.len() > 0 %}URL | {% else %}{% endif %} {% match person_wishlist_item.received_at %} {% when None %} | Not yet! | {% when Some with (received_at) %}Got it! | {% endmatch %} {% if my_wishlist %} {% match person_wishlist_item.received_at %} {% when None %}Received | {% when Some with (received_at) %}Delete | {% endmatch %} {% else %} {% match person_wishlist_item.purchased_by %} {% when Some with (purchased_by) %} {% if purchased_by.clone() == user.id %}Return | {% else %}Purchased | {% endif %} {% when None %}Bought | {% endmatch %} {% endif %}