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

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

{% if not completed %} {% endif %}

Question {{ current | add:1 }} / {{ total_count }}

{{ question.text | markdown }}
{% csrf_token %} {% block content %}{% endblock %}
{% if question.hint %} Show Hint {% endif %} {% if question.hint and question.solution %}/{% endif %} {% if question.solution %} Show Solution {% endif %}
{% if current > 0 %} {% endif %}
{% include "activity_quiz/_progress_bar.html" with current=current progress=statuses %}
{% if current|add:1 < total_count %} {% else %} {% endif %}
{% endblock %}