{% extends "base.html" %} {% block title %}{{section.label}} (instructor){% endblock %} {% block bodyclass %}instructor module-{{module.slug}}{% endblock %} {% block bodyid %}section-{{section.id}}{% endblock %} {% block sidenav %}

Sections

{% with "/instructor" as menu_base %} {% include "pagetree/menu.html" %} {% endwith %}
{% endblock %} {% block content %} student view of page

{{ section.label }}

{% if quizzes %} {% for quiz in quizzes %}

quiz {{quiz.id}}

{% if quiz.submission_set.count %} {% for submission in quiz.submission_set.all %} {% for response in submission.response_set.all %} {% endfor %} {% endfor %}
{{submission.user.first_name}} {{submission.user.last_name}} ({{submission.user.username}}) {{submission.submitted}}
Question {{response.question.ordinality}}: {{response.question.text}} {{response.value}}
{% else %}

no submissions

{% endif %} {% endfor %} {% else %}

no quizzes on this page

{% endif %}
{% endblock %} {% block content-nav %} {% if section.get_previous %} {% endif %} {% if section.get_next %} {% endif %} {% endblock %}