{% extends 'base.html' %} {% block title %}{{ lesson.title }} - Python Trainer{% endblock %} {% block content %}

{{ lesson.title }}

{% for item in regular_tasks %}
{% if item.is_completed %} {% else %} {% endif %}
{% if item.task.task_type == 'quiz' %} {% else %} {% endif %} {{ item.task.title }}
Задание {{ loop.index }}
{% endfor %}
{% if bonus_tasks %} {% if show_bonus %}
Дополнительные задания
{% for item in bonus_tasks %}
{% if item.is_completed %} {% else %} {% endif %}
{% if item.task.task_type == 'quiz' %} {% else %} {% endif %} {{ item.task.title }}
Доп. задание {{ loop.index }}
{% endfor %}
{% else %}
После выполнения всех заданий откроются дополнительные задания.
{% endif %} {% endif %} {% endblock %}