## mako <%page expression_filter="h"/> <%namespace name='static' file='../static_content.html'/> <%! from django.utils.translation import ugettext as _ from openedx.core.djangolib.markup import HTML from openedx.features.course_experience import course_home_page_title %> <%block name="content">
% if plain_html_updates: ${HTML(plain_html_updates)} % else:
% if updates: % for index, update in enumerate(updates):
% if not update.get("is_error"):
${update.get("date")}
% endif
${HTML(update.get("content"))}
% endfor % else:
${_("This course does not have any updates.")}
% endif
% endif