{% extends 'sbas/base.html' %} {% block content %}
Edit Clone Delete Admin Edit Add Note
Created: {{ question.created_date|date:"d/m/Y"}}
{% autoescape off %} {{question.stem}}
  1. {{ question.a_answer }}
  2. {{ question.b_answer }}
  3. {{ question.c_answer }}
  4. {{ question.d_answer }}
  5. {{ question.e_answer }}
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 %}