{% load i18n %} {% load tz %} {% spaceless %} {% block list_item %}
  • {% endblock %}

    {% trans "Assess Your Response" %} {% if self_start %} {# Translators: This string displays a date to the user, then tells them the time until that date. Example: "available August 13th, 2014 (in 5 days and 45 minutes)" #} {% blocktrans with start_date=self_start|utc|date:"N j, Y H:i e" time_until=self_start|timeuntil %}available {{ start_date }} (in {{ time_until }}){% endblocktrans %} {% elif self_due %} {# Translators: This string displays a date to the user, then tells them the time until that date. Example: "due August 13th, 2014 (in 5 days and 45 minutes)" #} {% blocktrans with due_date=self_due|utc|date:"N j, Y H:i e" time_until=self_due|timeuntil %}due {{ due_date }} (in {{ time_until }}){% endblocktrans %} {% endif %}

    {% block title %} {% trans "This step's status" %}: {% trans "In Progress" %} {% endblock %}
    {% block body %}

    {% trans "Your Response" %}

    {{ self_submission.answer.text|linebreaks }}
    {% if allow_file_upload and self_file_url %}

    {% trans "Associated Image" %}

    {% trans
    {% endif %}
    {% include "openassessmentblock/oa_rubric.html" %}

    {% trans "We could not submit your assessment" %}

    {% endblock %}
  • {% endspaceless %}