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

{{ decision.title }}

{% translate "Hello there," %}

{% translate "We have a question for you, and your answer shapes what comes next in the course." %}

{% if decision.deadline_days > 0 %}

{% blocktranslate %}Please answer within:{% endblocktranslate %}
{% blocktranslate with deadline_days=decision.deadline_days %}{{ deadline_days }} days{% endblocktranslate %}

{% endif %}

{{ decision.prompt|linebreaksbr }}

{% translate "Answer" %}

{% translate "This secure link opens the question directly." %}

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

{% if track_open_url %}{% endif %} {% endblock %}