This commit is contained in:
Ross
2022-04-02 23:17:27 +01:00
parent 69106fcec5
commit 36eefe9784
3 changed files with 22 additions and 41 deletions
@@ -3,25 +3,6 @@
{% block content %}
{% include 'atlas/collection_headers.html' %}
<p>{{cid_user_count}} candidates.</p>
<ol>
{% for cid in cid_users %}
<li><a href="{% url 'generic:update_cid' cid.pk %}">{{cid.cid}}</a> [{{cid.passcode}}] {{cid.name}} /
Email: {{cid.email}}
{% if cid.supervisor_email %} / Supervisor email: {{cid.supervisor_email}}{% endif %} <br />
Internal candidate: {{cid.internal_candidate}}
{% if cid.login_email_sent %} / Login email sent{% endif %}
{% if cid.results_email_sent %} / Results email sent{% endif %}
</li>
{% endfor %}
</ol>
<a href="{% url 'generic:manage_cids' %}">Manage CIDs here</a>
{% include "generic/exam_cids.html" %}
{% endblock %}
+20
View File
@@ -0,0 +1,20 @@
<p>{{cid_user_count}} candidates.</p>
<ol>
{% for cid in cid_users %}
<li><a href="{% url 'generic:update_cid' cid.pk %}">{{cid.cid}}</a> [{{cid.passcode}}] {{cid.name}} /
Email: {{cid.email}}
{% if cid.supervisor_email %} / Supervisor email: {{cid.supervisor_email}}{% endif %} <br />
Internal candidate: {{cid.internal_candidate}}
{% if cid.login_email_sent %} / Login email sent{% endif %}
{% if cid.results_email_sent %} / Results email sent{% endif %}
</li>
{% endfor %}
</ol>
<a href="{% url 'generic:manage_cids' %}">Manage CIDs here</a>
+1 -21
View File
@@ -6,27 +6,7 @@
<div class="{{app_name}}">
<h1>Exam: {{ exam.name }}</h1>
<p>{{cid_user_count}} candidates.</p>
<ol>
{% for cid in cid_users %}
<li><a href="{% url 'generic:update_cid' cid.pk %}">{{cid.cid}}</a> [{{cid.passcode}}] {{cid.name}} /
Email: {{cid.email}}
{% if cid.supervisor_email %} / Supervisor email: {{cid.supervisor_email}}{% endif %} <br />
Internal candidate: {{cid.internal_candidate}}
{% if cid.login_email_sent %} / Login email sent{% endif %}
{% if cid.results_email_sent %} / Results email sent{% endif %}
</li>
{% endfor %}
</ol>
<a href="{% url 'generic:manage_cids' %}">Manage CIDs here</a>
{% include "generic/exam_cids.html" %}
</div>
{% endblock %}