28 lines
723 B
HTML
28 lines
723 B
HTML
{% extends app_name|add:'/exams.html' %}
|
|
|
|
{% block content %}
|
|
|
|
{% load thumbnail %}
|
|
<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}} /
|
|
{{cid.email}} /
|
|
{{cid.supervisor_email}} /
|
|
{% if cid.login_email_sent %}Login email sent{% endif %} /
|
|
{% if cid.results_email_sent %}Results email sent{% endif %} /
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ol>
|
|
|
|
|
|
</div>
|
|
{% endblock %}
|