{% if grade and reasons %}
{% trans "You got " %}{{grade}} %{% trans " score for this activity." %}
{% trans "Explanation: " %}
{% for reason in reasons %}
{{reason}}
{% endfor %}
{% elif grade == 0 and not reasons %}
{% blocktrans %}Click on the {{button_text}} button to see your score.{% endblocktrans %}
{% elif not grade and not reasons and not results %}
{% trans "We cannot find your account on Customization. Please make sure that you have created your account. If you need assistance, please contact the course team." %}
{% else %}
{% trans "Something went wrong please try again." %}
{% endif%}