{% extends "base.html" %} {% load richtext %} {% block title %}Written Response Practice - {{ course.title|exam_marks }}{% endblock %} {% block content %} ← Back to course

Written Response Practice: {{ course.title|exam_marks }}

{% if submitted %}

Now grade yourself

Your responses are saved below. Compare each one to the model rubric and honestly judge how many of its points you covered. (These answers are not auto-graded.)

{% else %}

Write your answer to each prompt in your own words. When you submit, a model rubric will appear so you can grade yourself against it. There's no time limit, and answers aren't auto-graded.

{% endif %}
{% csrf_token %} {% for q in questions %}
Q{{ forloop.counter }}. {{ q.text|richtext }}
{% if submitted %} {% if q.answer %}
Model rubric — grade yourself against this
{{ q.rubric|richtext }}
{% else %}

You left this one blank. Try writing a response, then compare it to the rubric.

{% endif %} {% endif %}
{% empty %}

No written-response prompts for this course yet.

{% endfor %} {% if questions and not submitted %} {% endif %}
{% endblock %}