{% extends "emails/base.html" %} {% load i18n %} {% load static %} {% block extra_styles %} pre { background-color: #f4f4f4; padding: 10px; border-radius: 5px; overflow-x: auto; margin: 15px 0 30px; } .progress-wrapper { margin-top: 40px; padding: 20px 0; border-top: 1px solid #ddd; } .progress-label { display: block; margin-bottom: 10px; font-size: 14px; color: #555; } .progress-container { width: 100%; background-color: #e0e0e0; border-radius: 5px; overflow: hidden; } .progress-bar { height: 20px; background-color: #4caf50; width: 0; transition: width 0.5s ease-in-out; background-image: linear-gradient(to right, #7070e6, #4dd2cb); } {% endblock %} {% block content %}

{{ lesson.title }}

{{ lesson.content|safe }}
{% block lesson_extras %} {% if next_content %}

{% blocktranslate %}What’s coming up next?{% endblocktranslate %}

{% if next_content.lesson %}

{% blocktranslate with next_lesson_title=next_content.lesson.title delay=next_content.human_readable_waiting_period title=lesson.title %} Now that you've mastered {{ title }}, we’ll be moving on to {{ next_lesson_title }}. Keep an eye out for that email—it will hit your inbox in {{ delay }}. {% endblocktranslate %}

{% elif next_content.quiz %}

{% blocktranslate with quiz_title=next_content.quiz.title delay=next_content.human_readable_waiting_period title=lesson.title %} Now that you've mastered {{ title }}, it’s time to put that knowledge to the test! Your next email will be the {{ quiz_title }}. Look out for it hitting your inbox in {{ delay }}. {% endblocktranslate %}

{% endif %} {% endif %} {% endblock %} {% blocktranslate %}Course Progress: {{ progress }}%{% endblocktranslate %}

{% blocktranslate %}If you wish to unsubscribe from this course, please click here{% endblocktranslate %}. {% if support_imap_interface %} {% blocktranslate %}Alternatively, you can also send an email with the subject drop {{ course_slug }} to {{ imap_email_address }}.{% endblocktranslate %} {% endif %}

{% endblock %} {% block footer %} {% endblock %}