{% extends "base.html" %} {% block content %}

My Learning Progress

Track your journey through different topics

{{ (total_progress * 100)|round|int }}%
Overall Progress

Completed Topics

{{ completed_topics }}
Out of {{ total_topics }} topics

Daily Streak

{{ user_stats.current_streak }}
{{ user_stats.current_streak }} day{% if user_stats.current_streak != 1 %}s{% endif %} streak (longest: {{ user_stats.longest_streak }})

Vocabulary

{{ user_stats.vocabulary_count }}
Words learned

My Results

View All
Check your submissions

Skills Overview

Reading
Speaking
Writing

Topics Progress

{% for category, topics in topics_by_category.items() %}

{{ category }}

{% for topic in topics %}
{{ topic.title }} {% set progress = topic_progress.get(topic.id, 0) %} {{ (progress * 100)|round|int }}%
{% if progress == 1 %}
Completed
{% endif %}
{% endfor %}
{% endfor %}
{% block extra_js %} {% endblock %} {% endblock %}