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

{% blocktranslate with decision_title=decision.title %}Reminder: {{ decision_title }}{% endblocktranslate %}

{% translate "Hello there," %}

{% translate "This is a friendly reminder that a question is waiting for your answer." %}

{% if deadline_time %}

{% blocktranslate %}The link is valid until:{% endblocktranslate %}
{{ deadline_time|timezone:"UTC"|date:"Y-m-d H:i e" }}

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

{% endblock %}