You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
502 B
HTML
24 lines
502 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<h1>Wishlist {{ wishlist.name }}</h1>
|
|
|
|
{% if wishlist.description %}
|
|
<p class=description>{{ wishlist.description }}</p>
|
|
{% endif %}
|
|
|
|
{% if object_list %}
|
|
<ul>
|
|
{% for item in object_list %}
|
|
{# TODO: Implement checkboxes and hidden items #}
|
|
{% if item.description %}
|
|
<li><a href="{{ item.get_absolute_url }}">{{ item }}</a>
|
|
{% else %}
|
|
<li>{{ item }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>This wishlist is empty</p>
|
|
{% endif %}
|
|
{% endblock %}
|