{% extends "base.html" %} {% load i18n %} {% load display_functions %} {% block extra_scripts %} {% endblock extra_scripts %} {% block extra_body %} onload="init();" {% endblock extra_body %} {% block content %}

{{ course.title|title_lang:LANGUAGE_CODE }} > {% trans 'title_feedback' %} > {{ quiz.title }}

{% trans 'Tags:' %} {{ course.get_tags}}

{% if page.object_list %} {% include "oppia/includes/page_navigator.html" %}
{% for a in page.object_list %} {% endfor %}
{% trans 'table_header_attempt_date' %} {% trans 'table_header_attempt_name' %}
{{ a.attempt_date }} {% if OPPIA_SHOW_GRAVATARS %} {{ a.user|gravatar:24 }} {% endif %} {{ a.user.first_name }} {{ a.user.last_name }}
{% for r in a.responses %} {% endfor %}
{% trans 'Question' %} {% trans 'Response' %}
{{ r.question.title }} {{ r.text }}
{% include "oppia/includes/page_navigator.html" %} {% else %}

{% trans 'No attempts yet' %}

{% endif %} {% endblock content %}