{% extends 'base.html' %} {% block content %}
{% if request.user.is_authenticated %} User: {{ request.user }} {% else %} CID: {{ cid }} {% endif %}

{{ exam }}: Question [{{ pos|add:1 }}/{{ exam_length }}]

{% include "exam_clock.html" %}
{% if exam.publish_results %} {% elif cid_user_exam.completed %} {% endif %}
{# Layout change: make both columns full-width so the right panel is not a sidebar #}
{{ question.stem|safe }}
  • {{ question.a_answer|safe }}
  • {{ question.b_answer|safe }}
  • {{ question.c_answer|safe }}
  • {{ question.d_answer|safe }}
  • {{ question.e_answer|safe }}
{% csrf_token %}
{{ form }}
{% if previous > -1 %} {% endif %} {% if next %} {% else %} {% if not exam.publish_results %} {% endif %} {% endif %}
{% if exam.publish_results and question.feedback %}
Feedback
{{ question.feedback|safe }}
{% endif %}
{% include "sbas/exam_take_help.html" %}
Questions

Tap a number to jump to that question.

{% endblock %} {% block js %} {% endblock %} {% block css %} {% endblock %}