{% load i18n %} {% spaceless %}
    1. {% for topscore in topscores %}
    2. {{ forloop.counter }}
      {% with num_points=topscore.score %}
      {% blocktrans %}{{ num_points }} points{% endblocktrans %}
      {% endwith %}
      {% trans "Your peer's response to the prompt above" as translated_label %} {% include "legacy/oa_submission_answer.html" with answer=topscore.submission.answer answer_text_label=translated_label %} {% include "legacy/oa_uploaded_file.html" with file_upload_type=file_upload_type file_urls=topscore.files class_prefix="submission__answer" including_template="leaderboard_show" xblock_id=xblock_id %}
    3. {% endfor %}
  • {% endspaceless %}