{% load i18n %} {% spaceless %}
  • {% trans "Leaderboard: Complete" %}

    {% trans "Best Responses For This Assignment" %}

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

      {% with num_points=topscore.score %}

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

      {% endwith %}
      {{ topscore.content|linebreaks }}
    2. {% endfor %}

  • {% endspaceless %}