{% load i18n %} {% spaceless %}
  • {% trans "Top Responses" %}

    {% trans "Top-Scoring Responses for This Assignment" %}

      {% for topscore in topscores %}
    1. {{ forloop.counter }}

      {% with num_points=topscore.score %}

      {% blocktrans %}{{ num_points }} points{% endblocktrans %}

      {% endwith %}
      {% if topscore.file %} {% trans {% endif %} {% trans "Your peer's response to the question above:" as translated_label %} {% include "openassessmentblock/oa_submission_answer.html" with answer=topscore.submission.answer answer_text_label=translated_label %}
    2. {% endfor %}

  • {% endspaceless %}