{% extends 'base.html' %} {% load static %} {% load autodidact %} {% block navigation %} {% include 'autodidact/include/assignment_navigation.html' %} {% endblock %} {% block content %} {% if step %} {% csrf_token %} Step {{step.nr}} of {{count}}: {{step.name}} {{step.description|upload_urls:session}} {% if step.answer_required %} Your answer: {{completedstep.answer}} {% endif %} {% if not first %} {% endif %} {% if not last %} {% else %} {% endif %} 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 %}