Files
penracourses/templates/cid_scores.html
T
2021-12-12 08:50:35 +00:00

48 lines
1.4 KiB
HTML

{% extends 'base.html' %}
{% block content %}
<div class="">
<h2>CID: {{ cid }}</h2>
The following exams have been found (click to view answers and scores):
{% if physics_exams %}
<h3>Physics</h3>
<ul>
{% for exam in physics_exams %}
<li><a href="{% url 'physics:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if anatomy_exams %}
<h3>Anatomy</h3>
<ul>
{% for exam in anatomy_exams %}
<li><a href="{% url 'anatomy:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if rapid_exams %}
<h3>Rapids</h3>
<ul>
{% for exam in rapid_exams %}
<li><a href="{% url 'rapids:exam_scores_cid_user' pk=exam.pk cid=cid %}">{{exam.name}}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if longs_exams %}
<h3>Longs</h3>
<ul>
{% for exam in longs_exams %}
<li><a href="{% url 'longs:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if sba_exams %}
<h3>SBAs</h3>
<ul>
{% for exam in sba_exams %}
<li><a href="{% url 'sbas:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
{% endblock %}