30 lines
935 B
HTML
30 lines
935 B
HTML
{% extends 'rapids/base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Examinations</h1>
|
|
<div class="rapids">
|
|
Active exams:<br/>
|
|
<ul>
|
|
{% for exam in exams %}
|
|
{% if exam.active %}
|
|
<li>
|
|
<a href="{% url 'rapids:exam_overview' pk=exam.pk %}">{{exam.name}}</a> <a href="{% url 'rapids:mark_overview' pk=exam.pk %}">(mark)</a> <a href="{% url 'rapids:exam_scores_cid' pk=exam.pk %}">(scores)</a> [Results are {% if not exam.publish_results %} not {% endif %}published]
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
Inactive exams:<br/>
|
|
<ul>
|
|
{% for exam in exams %}
|
|
{% if not exam.active %}
|
|
<li>
|
|
<a href="{% url 'rapids:exam_overview' pk=exam.pk %}">{{exam.name}}</a> <a href="{% url 'rapids:mark_overview' pk=exam.pk %}">(mark)</a> <a href="{% url 'rapids:exam_scores_cid' pk=exam.pk %}">(scores)</a> [Results are {% if not exam.publish_results %} not {% endif %}published]
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
{% endblock %} |