{% load i18n %}
{% if release_note_count == 1 %}
{% blocktrans %}Hello, a new edX.org Release Note has been published!{% endblocktrans %}
{% else %}
{% blocktrans with count=release_note_count %}Hello, {{ count }} new edX.org Release Notes have been published!{% endblocktrans %}
{% endif %}

{% for note in release_notes %}
{{ note.title }}
{% trans "Published:" %} {{ note.published_at_display }}

{{ note.content }}

{% endfor %}
---
{% blocktrans %}This is an automated email. Please do not reply directly to this email. To stop receiving notifications like these in the future, unsubscribe here:{% endblocktrans %} {{ unsubscribe_url }}
