{% extends 'base.html' %} {% load static %} {% load autodidact %} {% block navigation %} {% include 'autodidact/include/assignment_navigation.html' %} {% endblock %} {% block content %} {% if step %} {% csrf_token %} Assignment {{assignment.nr}} – step {{step.nr}} of {{count}} {{step.description|upload_urls:session}} {% if step.answer_required %} Your answer: {{completedstep.answer}} {% endif %} {% for hint in step.clarifications.all %} {% if hint.image %} {% endif %} {{hint.description}} {% endfor %} Your progress in this assignment: {% for finished in step_overview %} {% if forloop.counter == step.nr %} {{forloop.counter}} {% elif finished %} {{forloop.counter}} {% else %} {{forloop.counter}} {% endif %} {% endfor %} {% else %} This step does not exist. Go back to step 1. {% endif %} {% endblock %}