{% load i18n %} {% spaceless %}
  • {% trans "Your Grade" %}: {% if score %} {% with points_earned_string=score.points_earned|stringformat:"s" points_possible_string=score.points_possible|stringformat:"s" %} {% blocktrans with points_earned=''|safe|add:points_earned_string|add:''|safe points_possible=''|safe|add:points_possible_string|add:''|safe %} {{ points_earned }} out of {{ points_possible }} {% endblocktrans %} {% endwith %} {% else %} 0 {% endif %}

    {% trans "Your submission has been cancelled." %}

  • {% endspaceless %}