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

{{ quiz.title }}

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

{% translate "Best of luck!" %}

{% blocktranslate %}If you wish to unsubscribe from this course, please click here{% endblocktranslate %}.

{% endblock %}