This commit is contained in:
Ross
2021-07-31 08:38:13 +01:00
parent fcb581d219
commit 695460e023
2 changed files with 6 additions and 3 deletions
@@ -40,8 +40,11 @@
<p class="pre-whitespace"><b>Mark Scheme:</b> <pre>{{ question.mark_scheme | safe}}</pre></p>
</div>
</p>
<p><b>Exam(s):</b> {{question.get_exams}}</p>
</div>
<div>
Exam(s): {% for exam in question.exams.all %}
<a href="{% url 'longs:exam_overview' pk=exam.pk %}">{{ exam.name }}</a>,
{% endfor %}
</div>
<div>
Notes:
<ul>
@@ -25,7 +25,7 @@
{% endfor %}
</div>
<div>
Exams: {% for exam in question.exams.all %}
Exam(s): {% for exam in question.exams.all %}
<a href="{% url 'rapids:exam_overview' pk=exam.pk %}">{{ exam.name }}</a>,
{% endfor %}