{% extends "emails/base.html" %} {% load i18n %} {% block content %}
{% translate "Hello there," %}
{% blocktranslate with deadline_days=quiz.deadline_days %}Your quiz is now available for completion. You have {{ deadline_days }} days from today to submit your responses.{% 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 "Best of luck!" %}
{% blocktranslate %}If you wish to unsubscribe from this course, please click here{% endblocktranslate %}.
{% endblock %}