This commit is contained in:
Ross
2021-12-31 13:37:07 +00:00
parent 670db12ec2
commit 031a50caca
+4 -4
View File
@@ -4,11 +4,11 @@
<div class=""> <div class="">
<h2>CID: {{ cid }}</h2> <h2>CID: {{ cid }}</h2>
<p>The following exams will be available to take when active. <p>The following exams will be available to take when active.
{% for t, exams in available_exams %} {% for exam_type, exams in available_exams %}
<h4>{{t}}</h4> <h4>{{exam_type}}</h4>
<ul> <ul>
{% for e in exams %} {% for exam in exams %}
<li><a href="" target="_blank">{{e.name}}</a></li> <li><a href="" target="_blank">{{exam.name}}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endfor %} {% endfor %}