## 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 len(plain_html_updates) > 0: ${HTML(plain_html_updates)} % else:
% for index, update in enumerate(updates):
% if not update.get("is_error"):
${update.get("date")}
% endif
${HTML(update.get("content"))}
% endfor
% endif