This commit is contained in:
Ross
2021-12-07 16:29:12 +00:00
parent 4562081ce4
commit e89067ecba
+16 -9
View File
@@ -1,15 +1,22 @@
{% extends 'anatomy/exams.html' %} {% extends 'anatomy/exams.html' %}
{% block content %} {% block content %}
<h2>Marking question {{question_details.current}} of {{question_details.total}}</h2> <h2>Marking question {{question_details.current}} of {{question_details.total}}</h2>
<a href="{% url 'anatomy:question_detail' question.id %}" title="View the Question">View</a> <a href="{% url 'anatomy:anatomy_question_update' question.id %}" title="Edit the Question">Edit</a> <a href="{% url 'admin:anatomy_anatomyquestion_change' question.id %}" title="Edit the Question using the admin interface">Admin Edit</a> <a href="{% url 'anatomy:question_detail' question.id %}" title="View the Question">View</a> <a href="{% url 'anatomy:anatomy_question_update' question.id %}" title="Edit the Question">Edit</a> <a href="{% url 'admin:anatomy_anatomyquestion_change' question.id %}" title="Edit the Question using the admin interface">Admin Edit</a>
<h3>{{ question.question_type }}</h3> <h3>{{ question.question_type }}</h3>
<div id="single-dicom-viewer" class="marking-dicom" data-images="{{ question.get_image_url_array }}" data-annotations='{{question.get_image_annotations}}'> <div id="single-dicom-viewer" class="marking-dicom" data-images="{{ question.get_image_url_array }}" data-annotations='{{question.get_image_annotations}}'>
</div> </div>
<div class="marking"> <div class="marking">
<form method="POST" class="post-form">{% csrf_token %} <form method="POST" class="post-form">{% csrf_token %}
Click each answer to toggle through marks awarded (as per colour) Click each answer to toggle through marks awarded (as per colour)
{% if not review %}
{% if unmarked_exam_answers_only %}
Showing unmarked exam answers only <a href="{% url 'rapids:mark_all' exam.id question_number %}">(view all answers for question)</a>
{% else %}
Showing all answers <a href="{% url 'rapids:mark' exam.id question_number %}">(view unmarked exam answers only)</a>
{% endif %}
{% endif %}
<div class="marking-list"> <div class="marking-list">
Unmarked: Unmarked:
<ul id="new-answer-list" class="answer-list"> <ul id="new-answer-list" class="answer-list">
@@ -44,6 +51,6 @@
<span class=hide> <span class=hide>
{{ form.as_p }} {{ form.as_p }}
</span> </span>
</form> </form>
</div> </div>
{% endblock %} {% endblock %}