-
-

${_("Course Start Date")}

-
-

${course_release_date}

- -
-
-

${_("Course Pacing")}

-
- % if context_course.self_paced: -

${_("Self-Paced")}

- % else: -

${_("Instructor-Paced")}

- % endif -
-
% if should_show_checklists_page(): -
+ ## set width dynamically depending upon whether course has a start date to ensure spacing looks good + % if course_release_date == 'Set Date': +
+ % else: +
+ % endif <%static:studiofrontend entry="courseOutlineHealthCheck"> + <% + course_key = context_course.id + %> { "lang": "${language_code | n, js_escaped_string}", "course": { @@ -199,11 +184,14 @@ from openedx.core.djangolib.markup import HTML, Text "help_tokens": { "files": "${get_online_help_info(online_help_token())['doc_url'] | n, js_escaped_string}" }, - "enable_quality": ${should_show_checklists_quality(request.user, context_course.id) | n, dump_js_escaped_json} + "enable_quality": ${should_show_checklists_quality(request.user, context_course.id) | n, dump_js_escaped_json}, + "links": { + "settings": ${reverse('settings_handler', kwargs={'course_key_string': unicode(course_key)})| n, dump_js_escaped_json} + } } - - +
+
% endif