{% extends 'ace_common/edx_ace/common/base_body.html' %} {% load i18n %} {% block content %}

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

{% trans "Published:" %} {{ note.published_at_display|force_escape }}

{% autoescape off %} {{ note.content }} {% endautoescape %}

{% endfor %}

{% blocktrans %}This is an automated email. Please do not reply directly to this email.{% endblocktrans %}
{% blocktrans %}To stop receiving notifications like these in the future, unsubscribe{% endblocktrans %} {% trans "here" as transhere %}{{ transhere|force_escape }}.

{% endblock %}