From 9f914bc1284e7b1bf800a7403974b43e32a8d0aa Mon Sep 17 00:00:00 2001 From: Ross Date: Wed, 22 Sep 2021 18:54:14 +0100 Subject: [PATCH] . --- sbas/templates/sbas/question_detail.html | 74 ++++++++++++------------ 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/sbas/templates/sbas/question_detail.html b/sbas/templates/sbas/question_detail.html index 483899ce..ce93ba70 100644 --- a/sbas/templates/sbas/question_detail.html +++ b/sbas/templates/sbas/question_detail.html @@ -1,41 +1,41 @@ {% extends 'sbas/base.html' %} {% block content %} -
- Admin Edit - Add Note -
- Created: {{ question.created_date|date:"d/m/Y"}} -
- {% autoescape off %} - {{question.stem}} -
-
    -
  1. {{ question.a_answer }}
  2. -
  3. {{ question.b_answer }}
  4. -
  5. {{ question.c_answer }}
  6. -
  7. {{ question.d_answer }}
  8. -
  9. {{ question.e_answer }}
  10. -
- Best answer: {{ question.best_answer }} ({{question.get_correct_answer_stripped}}) -
- {% endautoescape %} -
- Examinations: {% for exam in question.exams.all %} - {{ exam.name }} - {% endfor %} -
-
- Category: {{ question.category }} -
- -
- Author: {% for user in question.author.all %} - {{ author }}, - {% endfor %} -
- - {% include 'question_notes.html' %} +
+ Admin Edit + Add Note +
+ Created: {{ question.created_date|date:"d/m/Y"}}
-{% endblock %} + {% autoescape off %} + {{question.stem}} +
+
    +
  1. {{ question.a_answer }}
  2. +
  3. {{ question.b_answer }}
  4. +
  5. {{ question.c_answer }}
  6. +
  7. {{ question.d_answer }}
  8. +
  9. {{ question.e_answer }}
  10. +
+ Best answer: {{ question.best_answer }} ({{question.get_correct_answer_stripped}}) +
+ {% endautoescape %} +
+ Examinations: {% for exam in question.exams.all %} + {{ exam.name }} + {% endfor %} +
+
+ Category: {{ question.category }} +
+ +
+ Author: {% for user in question.author.all %} + {{ author }}, + {% endfor %} +
+ + {% include 'question_notes.html' %} +
+{% endblock %} \ No newline at end of file