gwift_old/templates/wish/list_detail.html

17 lines
353 B
HTML

{% extends "base.html" %}
{% block content %}
<h3>Liste {{ wishlist.name }}</h3>
<div>
{{ wishlist.description }}
</div>
<div>
<ul>
{% for wish in wishlist.items.all %}
<li><a href="{% url "wish:wish" wish.pk %}">{{ wish.name }}</a>: {{ wish.description }}</li>
{% endfor %}
</ul>
</div>
{% endblock %}