polyphonic/app/library/templates/library/project_detail.html
2023-03-02 13:28:24 +11:00

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>