## mako <%page expression_filter="h"/> <%namespace name='static' file='../static_content.html'/> <%! from django.utils.translation import ugettext as _ %>

${_("Important Course Dates")}

## Should be organized by date, last date appearing at the bottom % for course_date in course_date_blocks:
% if course_date.title: % if course_date.title == 'current_datetime': % else: ${course_date.title} % endif % endif % if course_date.date and course_date.title != 'current_datetime':

% endif % if course_date.description:

${course_date.description}

% endif % if course_date.link and course_date.link_text: ${course_date.link_text} % endif
% endfor