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

{% blocktranslate with assignment_title=assignment.title %}Reminder For Assignment: {{assignment_title}}{% endblocktranslate %}

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

{% endif %}

{% translate "Please click the link below to access and submit your assignment:" %}

{% translate "Submit Your Assignment" %}

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

{% endblock %}