{% extends "emails/base.html" %} {% load i18n %} {% load tz %} {% block content %}
{% translate "Hello there," %}
{% translate "This is a friendly reminder to complete your quiz." %}
{% if deadline_time %}
{% blocktranslate %}The quiz link is valid until:{% endblocktranslate %}
{{ deadline_time|timezone:"UTC"|date:"Y-m-d H:i e" }}
{% blocktranslate with score=quiz.required_score %}To successfully pass this quiz, you must achieve a minimum score of {{ score }}.{% endblocktranslate %}
{% translate "Please click the link below to access and submit your quiz:" %}
{% translate "This secure link opens your quiz directly." %}
{% translate "Best of luck!" %}
{% blocktranslate %}If you wish to unsubscribe from this course, please click here{% endblocktranslate %}.
{% endblock %}