{% extends "emails/base.html" %} {% load i18n %} {% load tz %} {% block content %}
{% translate "Hello there," %}
{% translate "This is a friendly reminder to complete your assignment." %}
{% if deadline_time %}
{% blocktranslate %}The assignment link is valid until:{% endblocktranslate %}
{{ deadline_time|timezone:"UTC"|date:"Y-m-d H:i e" }}
{% translate "Please click the link below to access and submit your assignment:" %}
{% blocktranslate %}If you wish to unsubscribe from this course, please click here{% endblocktranslate %}.
{% endblock %}