{% extends "emails/base.html" %} {% load i18n %} {% block content %}
{% translate "Hello there," %}
{% translate "Your quiz is now available for completion." %}
{% if quiz.deadline_days > 0 %}
{% blocktranslate %}Please submit your responses within:{% endblocktranslate %}
{% blocktranslate with deadline_days=quiz.deadline_days %}{{ deadline_days }} days{% endblocktranslate %}
{% 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 %}