This commit is contained in:
Ross
2021-07-28 19:08:40 +01:00
parent 057811ec4e
commit 4cc8100a48
12 changed files with 628 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{% extends 'base.html' %}
{% block content %}
<h2>Question [{{pos}}/{{exam_length}}]</h2>
<div>
{% if previous > -1 %}
<a href="{% url 'sbas:exam_question_detail' exam.id previous cid %}">Previous question</a>
{% endif %}
{% if next %}
<a href="{% url 'sbas:exam_question_detail' exam.id next cid %}">Next question</a>
{% endif %}
</div>
{% endblock %}
+27
View File
@@ -0,0 +1,27 @@
{% extends 'rapids/base.html' %}
{% block content %}
{% if exam %}
<div>
{% if previous > -1 %}
<a href="{% url 'rapids:exam_question_detail' exam.id previous %}">Previous question</a>
{% endif %}
This question is part of exam: <a href="{% url 'rapids:exam_overview' exam.id %}">{{exam.name}}</a> [{{pos}}/{{exam_length}}]
{% if next %}
<a href="{% url 'rapids:exam_question_detail' exam.id next %}">Next question</a>
{% endif %}
</div>
{% endif %}
<a href="{% url 'rapids:rapid_update' pk=question.pk %}" title="Edit the Rapid">Edit</a>
<a href="{% url 'rapids:rapid_clone' pk=question.pk %}" title="Clone the Rapid (duplicate everything but the images)">Clone</a>
<a href="{% url 'rapids:question_delete' pk=question.pk %}" title="Delete the Rapid">Delete</a>
<a href="{% url 'rapids:rapid_add_note' pk=question.pk %}"> Add Note</a>
{% if request.user.is_superuser %}
<a href="{% url 'admin:rapids_rapid_change' question.id %}" title="Edit the Rapid using the admin interface">Admin Edit</a>
{% endif %}
{% include 'rapids/question_display_block.html' %}
{% endblock %}