{% extends "emails/base.html" %} {% load i18n %} {% load tz %} {% block content %}

{% blocktranslate with quiz_title=quiz.title %}Reminder For Quiz: {{quiz_title}}{% endblocktranslate %}

{% 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" }}

{% endif %}
{% if quiz.is_blocking %}

{% blocktranslate with score=quiz.required_score %}To successfully pass this quiz, you must achieve a minimum score of {{ score }}.{% endblocktranslate %}

{% endif %}

{% translate "Please click the link below to access and submit your quiz:" %}

{% translate "Start 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 %}