This commit is contained in:
Ross
2021-12-12 12:55:51 +00:00
parent 85b3030e38
commit a83c0676d2
+4 -4
View File
@@ -16,7 +16,7 @@
<h3>Anatomy</h3> <h3>Anatomy</h3>
<ul> <ul>
{% for exam in anatomy_exams %} {% for exam in anatomy_exams %}
<li><a href="{% url 'anatomy:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li> <li><a href="{% url 'anatomy:exam_scores_cid_user' pk=exam.pk sk=cid passcode=passcode %}">{{exam.name}}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
@@ -24,7 +24,7 @@
<h3>Rapids</h3> <h3>Rapids</h3>
<ul> <ul>
{% for exam in rapid_exams %} {% for exam in rapid_exams %}
<li><a href="{% url 'rapids:exam_scores_cid_user' pk=exam.pk cid=cid %}">{{exam.name}}</a></li> <li><a href="{% url 'rapids:exam_scores_cid_user' pk=exam.pk cid=cid passcode=passcode %}">{{exam.name}}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
@@ -32,7 +32,7 @@
<h3>Longs</h3> <h3>Longs</h3>
<ul> <ul>
{% for exam in longs_exams %} {% for exam in longs_exams %}
<li><a href="{% url 'longs:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li> <li><a href="{% url 'longs:exam_scores_cid_user' pk=exam.pk sk=cid passcode=passcode %}">{{exam.name}}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
@@ -40,7 +40,7 @@
<h3>SBAs</h3> <h3>SBAs</h3>
<ul> <ul>
{% for exam in sba_exams %} {% for exam in sba_exams %}
<li><a href="{% url 'sbas:exam_scores_cid_user' pk=exam.pk sk=cid %}">{{exam.name}}</a></li> <li><a href="{% url 'sbas:exam_scores_cid_user' pk=exam.pk sk=cid passcode=passcode %}">{{exam.name}}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}