diff --git a/lms/templates/courseware/course_about.html b/lms/templates/courseware/course_about.html index 7afee9c83766..eec9caeadbec 100644 --- a/lms/templates/courseware/course_about.html +++ b/lms/templates/courseware/course_about.html @@ -62,8 +62,8 @@
+

${course.display_org_with_default}

${course.display_name_with_default}

- ${course.display_org_with_default}

${get_course_about_section(request, course, 'short_description')}

@@ -159,7 +159,11 @@

${course.display_name_with_default}

<%block name="course_about_important_dates">
    -
  1. ${_("Course Number")}

    ${course.display_number_with_default}
  2. +
  3. + +

    ${_("Course Number")}

    + ${course.display_number_with_default} +
  4. % if not course.start_date_is_still_default: <% course_start_date = course.advertised_start or course.start @@ -217,6 +221,8 @@

    ${course.display_name_with_default}

  5. ${_("Prerequisites")}

    + ## Multiple pre-requisite courses are not supported on frontend that's why we are pulling first element + ${pre_requisite_courses[0]['display']}

    ${Text(_("You must successfully complete {link_start}{prc_display}{link_end} before you begin this course.")).format( link_start=HTML('').format(prc_target),