<label>Release date:<!-- <span class="description">Determines when this subsection and the units within it will be released publicly.</span>--></label>
<inputtype="text"id="start_date"name="start_date"value="${start_date.strftime('%m/%d/%Y') if start_date is not None else ''}"placeholder="MM/DD/YYYY"class="date"size='15'autocomplete="off"/>
<inputtype="text"id="start_time"name="start_time"value="${start_date.strftime('%H:%M') if start_date is not None else ''}"placeholder="HH:MM"class="time"size='10'autocomplete="off"/>
% if subsection.lms.start != parent_item.lms.start and subsection.lms.start:
% if parent_start_date is None:
% if parent_item.lms.start is None:
<pclass="notice">The date above differs from the release date of ${parent_item.display_name_with_default}, which is unset.
% else:
<pclass="notice">The date above differs from the release date of ${parent_item.display_name_with_default} – ${parent_start_date.strftime('%m/%d/%Y')} at ${parent_start_date.strftime('%H:%M')}.
<pclass="notice">The date above differs from the release date of ${parent_item.display_name_with_default} –
${get_time_struct_display(parent_item.lms.start, '%m/%d/%Y at %I:%M %p')}.
% endif
<ahref="#"class="sync-date no-spinner">Sync to ${parent_item.display_name_with_default}.</a></p>
<inputtype="text"id="due_date"name="due_date"value="${due_date.strftime('%m/%d/%Y') if due_date is not None else ''}"placeholder="MM/DD/YYYY"class="date"size='15'autocomplete="off"/>
<inputtype="text"id="due_time"name="due_time"value="${due_date.strftime('%H:%M') if due_date is not None else ''}"placeholder="HH:MM"class="time"size='10'autocomplete="off"/>