{% blocktrans with name=user.name %}Hi {{name}},{% endblocktrans %}
{% blocktrans count thread_count=thread_count %}You have {{thread_count}} discussion thread with updates in {{course_names}}. The most recent highlights are shown below. As a reminder, you can turn off all discussion digests from any course's Discussion Home page.{% plural %}You have {{thread_count}} discussion threads with updates in {{course_names}}. The most recent highlights are shown below. As a reminder, you can turn off all discussion digests from any course's Discussion Home page.{% endblocktrans %}
{% for course in digest.courses %}
|
{{ course.title }}
|
{% for thread in course.threads %}
|
{{ thread.title|escape }}
|
{% for item in thread.items %}
{% blocktrans with author=item.author datetime=item.dt author_span_attrs='style="font-size: 12px; font-weight:bold; color:#aaaaaa"' datetime_span_attrs='style="font-style:italic; font-size: 12px; color: #aaaaaa;"' %}{{author}}: on {{datetime}} UTC{% endblocktrans %}
{{ item.body|escape }}
|
{% endfor %}
|
{% endfor %}
{% endfor %}
{% if postal_address %}
{{postal_address}}
{% endif %}
|
|