{% extends 'base.html' %} {% block title %}Мои уроки - Python Trainer{% endblock %} {% block content %}

Мои уроки

{% if lessons_data %} {% set in_progress = [] %} {% set completed = [] %} {% set not_started = [] %} {% for item in lessons_data %} {% if item.total_tasks > 0 and item.completed_tasks == item.total_tasks %} {% set _ = completed.append(item) %} {% elif item.completed_tasks > 0 %} {% set _ = in_progress.append(item) %} {% else %} {% set _ = not_started.append(item) %} {% endif %} {% endfor %}
{% if in_progress or not_started %} {% if in_progress %}
Продолжить
{% for item in in_progress %}
{{ item.lesson.title }}

{{ item.lesson.topic.name }}

{% set percent = (item.completed_tasks / item.total_tasks * 100) if item.total_tasks > 0 else 0 %}
Выполнено: {{ item.completed_tasks }} из {{ item.total_tasks }}
{% endfor %}
{% endif %} {% if not_started %}
Новые уроки
{% for item in not_started %}
{{ item.lesson.title }}

{{ item.lesson.topic.name }}

Заданий: {{ item.total_tasks }}
{% endfor %}
{% endif %} {% else %}
Все уроки выполнены! Отличная работа!
{% endif %}
{% if completed %}
{% for item in completed %}
{{ item.lesson.title }}

{{ item.lesson.topic.name }}

Все задания выполнены
{% endfor %}
{% else %}
Пока нет выполненных уроков. Начните с вкладки "В работе"!
{% endif %}
{% else %}
Змейка учится

Вам пока не назначены уроки.
Дождитесь, пока учитель выдаст урок вашему классу.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}