${section.display_name}
<%
start_date = datetime.fromtimestamp(mktime(section.start)) if section.start is not None else None
start_date_str = start_date.strftime('%m/%d/%Y') if start_date is not None else ''
start_time_str = start_date.strftime('%H:%M') if start_date is not None else ''
%>
%if start_date is None:
This section has not been released.
Schedule
%else:
Will Release: ${start_date_str} at ${start_time_str}
Edit
%endif
-
% for subsection in section.get_children():
- ${units.enum_units(subsection)} % endfor