Files
penracourses/generic/templates/generic/examcollection_list.html
T
2024-02-05 18:30:35 +00:00

21 lines
464 B
HTML
Executable File

{% extends 'generic/examcollection_base.html' %}
{% block content %}
<h1>Exam Collections</h1>
<ul class="collections">
{% for collection in object_list %}
<li class="collection"><a href="{% url 'generic:examcollection_detail' collection.pk %}">{{ collection.name }} [{{ collection.date}}] (Authors: {{ collection.get_authors }})</a></li>
{% empty %}
<li>No exam collections yet.</li>
{% endfor %}
</ul>
{% endblock %}
{% block js %}
{% endblock %}