{% 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|timezone:time_zone|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|timezone:time_zone|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" %}
{% trans "Your response to the question above:" as translated_label %}
{% include "openassessmentblock/oa_submission_answer.html" with answer=self_submission.answer answer_text_label=translated_label %}
{% trans "Associated File" as translated_header %}
{% include "openassessmentblock/oa_uploaded_file.html" with file_upload_type=file_upload_type file_url=self_file_url header=translated_header class_prefix="self-assessment" %}