{% if workflow_status == "done" %}
{% 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 %}
Final grade: {{ points_earned }} out of {{ points_possible }}
{% endblocktrans %}
{% endwith %}
{% elif workflow_status == "waiting" %}
{% trans "The submission is waiting for assessments." %}
{% elif workflow_status == "cancelled" %}
{% trans "The learner's submission has been removed from peer assessment. The learner receives a grade of zero unless you delete the learner's state for the problem to allow them to resubmit a response." %}
{% elif workflow_status == None %}
{% trans "The problem has not been started." %}
{% else %}
{% trans "The problem has not been completed." %}
{% endif %}