{% extends "base.html" %} {% block content %} {% if exercise %} {% endif %}
{% if exercise.title %}
{{ exercise.title }}
{% endif %}
{% if exercise %} {{ exercise.exercise_id}} {% endif %} / {% if exercise %} {{ exercise.number_of_exercises}} {% endif %}
{% if exercise.curriculum %}
What you need to know
{% set curriculum = exercise.curriculum.split('\\n') %} {% for paragraph in curriculum %}

{{ paragraph }}

{% endfor %}
{% endif %} {% if exercise.text %}
Do this
{% set text = exercise.text.split('\\n') %} {% for paragraph in text %}

{{ paragraph }}

{% endfor %}
{% endif %} {% if exercise.hint %}
Here's a hint, if you need it
{% set hint = exercise.hint.split('\\n') %} {% for paragraph in hint %}

{{ paragraph }}

{% endfor %}
{% endif %}
Do you have feedback?

If you have any feedback, or found a bug, please report it here.

07:43
{% if exercise.editor %}{{exercise.editor}}{% endif %}
×
{% endblock %}