${section['display_name']} ${', current section' if 'active' in section and section['active'] else ''}
<%
if section.get('due') is None:
due_date = ''
else:
formatted_string = get_time_display(section['due'], due_date_display_format, coerce_tz=settings.TIME_ZONE_DISPLAYED_FOR_DEADLINES)
due_date = '' if len(formatted_string)==0 else _('due {date}').format(date=formatted_string)
%>
${section['format']} ${due_date}
% if 'graded' in section and section['graded']:
% endif