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

{% if parent %} {{ parent.name }} {% else %} Мои папки {% endif %}

{% if parent %} Экспорт {% else %} Экспорт {% endif %}
{% for topic in topics %}
{{ topic.name }}
{{ topic.lessons|length }} уроков
{% endfor %} {% for lesson in lessons %}
{{ lesson.title }}
{{ lesson.tasks|length }} заданий
{% endfor %}
{% if not topics and not lessons %}
{% if parent %} В этой папке пока ничего нет. Создайте папку или урок! {% else %} У вас пока нет папок и уроков. Создайте первую папку или урок! {% endif %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}