This commit is contained in:
Ross
2021-12-12 22:59:57 +00:00
parent 936cdec119
commit b3b0c8cca7
6 changed files with 67 additions and 7 deletions
+20
View File
@@ -0,0 +1,20 @@
{% extends 'anatomy/exams.html' %}
{% block content %}
{% load thumbnail %}
<div class="anatomy">
<h1>Exam: {{ exam.name }}</h1>
{{cid_user_count}} users.
<ol>
{% for cid in cid_users %}
<li>{{cid}}</li>
{% endfor %}
</ol>
</div>
{% endblock %}
+1
View File
@@ -8,6 +8,7 @@
{% if exam.exam_mode %}
<a href="{% url 'anatomy:mark_overview' pk=exam.pk %}">Mark</a> /
<a href="{% url 'anatomy:exam_scores_cid' pk=exam.pk %}">Scores</a> /
<a href="{% url 'anatomy:exam_cids' %}">CIDs</a> /
{% endif %}
<a href="{% url 'anatomy:anatomy_create_exam' pk=exam.pk %}">Add New Question</a>
{% endblock %}