21 lines
464 B
HTML
Executable File
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 %}
|