12 lines
364 B
HTML
12 lines
364 B
HTML
<h4 class="is-size-4">Items</h4>
|
|
<ul>
|
|
{% for item in project.items.all %}
|
|
{% with work=item.work %}
|
|
<li>
|
|
<a href="{% url 'work_detail' item.work.collection.pk item.work.pk %}">{{ item.work.name }}</a>
|
|
</li>
|
|
{% endwith %}
|
|
{% empty %}
|
|
<li>There are no items listed yet for this project - please check back later...</li>
|
|
{% endfor %}
|
|
</ul> |