{% extends "base.html" %} {% block title %}📚 Список тем{% endblock %} {% block content %}

📚 Список вивчених тем

{% if errors %}

⚠️ Увага! Знайдено помилки в даних:

{% endif %} {% for abbr, topic in topics.items() %} {% endfor %}
📌 Тема ⏱ Час навчання (хв) 📊 Оцінка 🔗 Посилання
{{ topic.theme }} {{ topic.actual if topic.actual is not none else 'Невідомо' }} {{ topic.score if topic.score is not none else 'Невідомо' }}/10 Переглянути
{% endblock %}