This commit is contained in:
Ross
2021-12-07 16:44:52 +00:00
parent 0117a24aa6
commit b5357b324f
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -5,6 +5,7 @@
<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>
<h3>{{ question.question_type }}</h3>
[{{question.get_primary_answer}}]
<div class="marking">
<form method="POST" class="post-form">{% csrf_token %}
+3 -2
View File
@@ -11,8 +11,8 @@
<div class="alert alert-warning" role="alert">
This questions has unmarked answers. Are you sure you want to review?
</div>
{% endif %}
{% if question.normal %}
<h3>This question is normal</h3>
Answers will be automatically marked.<br />
@@ -32,7 +32,8 @@
{% else %}
<h3>This question is abnormal</h3>
Answers given as normal will be automatically marked.<br />
Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities }}
Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities }}<br />
[{{question.get_primary_answer}}]
{% endif %}
<div class="marking">
<form method="POST" class="post-form">{% csrf_token %}