diff --git a/cms/templates/edit_subsection.html b/cms/templates/edit_subsection.html index 4aae070ca1..cbce91ab44 100644 --- a/cms/templates/edit_subsection.html +++ b/cms/templates/edit_subsection.html @@ -37,13 +37,13 @@
diff --git a/cms/templates/overview.html b/cms/templates/overview.html index 0b82d76943..43d0afc263 100644 --- a/cms/templates/overview.html +++ b/cms/templates/overview.html @@ -154,8 +154,12 @@

<% - start_date_str = section.lms.start.strftime('%m/%d/%Y') - start_time_str = section.lms.start.strftime('%H:%M') + if section.lms.start is not None: + start_date_str = section.lms.start.strftime('%m/%d/%Y') + start_time_str = section.lms.start.strftime('%H:%M') + else: + start_date_str = '' + start_time_str = '' %> %if section.lms.start is None: This section has not been released.