{% extends "emails/base.html" %} {% load i18n %} {% load tz %} {% block extra_styles %} .provider-photo { width: 40px; height: 40px; border-radius: 50% !important; margin-right: 10px; display: inline-block; } .provider-name { font-weight: bold; display: inline-block; vertical-align: top; padding-top: 10px; } .feedback-comment { display: inline-block; vertical-align: top; max-width: calc(100% - 50px); font-style: italic; color: #555; } .feedback-panel { background-color: #f9f9f9; border-left: 4px solid #ddd; padding: 15px; margin: 20px 0; } {% endblock %} {% block content %}

{% blocktranslate with assignment_title=assignment.title title_prefix=title_prefix %}{{ title_prefix }}: {{ assignment_title }}{% endblocktranslate %}

{% translate "Hello there," %}

{{ message }}

{% if feedback %}

{% if feedback.provider.photo %} {{ feedback.provider.name }} {% endif %} {{ feedback.provider.name }}

{{ feedback.comment }}

{% endif %}
{% if change_requested %}

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

{% translate "Update Your Assignment" %}
{% endif %}

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

{% endblock %}