{% extends "playground/base.html" %} {% load static i18n markdown %} {% block title %}{{ activity.title }}{% endblock %} {% block main %}

{{ activity.title }} {% trans "Back to course" %}

{% csrf_token %} {% if completed %}

You have finished quiz!

{% if activity.congratulations %} {{ activity.congratulations | markdown }} {% else %}

{% lorem 20 w random %}

{% endif %}

Your score: {{ score | floatformat:1}}%

{% else %}

Finish and evaluate!

{% if activity.confirmation_text %} {{ activity.confirmation_text | markdown }} {% else %} {% lorem 30 w random %} {% endif %}

{% endif %}
{% include "activity_quiz/_progress_bar.html" with current=current progress=statuses %}
{% endblock %}