Commit 00377652 by Ned Batchelder

Merge pull request #4179 from IONISx/tusbar/remove-course-id-from-title

Remove course ID from title in course about page
parents 7023eb4c 1b2e410e
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
<script src="${static.url('js/course_info.js')}"></script> <script src="${static.url('js/course_info.js')}"></script>
</%block> </%block>
<%block name="pagetitle">${_("About {course.display_number_with_default}").format(course=course) | h}</%block> <%block name="pagetitle">${get_course_about_section(course, "title")}</%block>
<section class="course-info"> <section class="course-info">
<header class="course-profile"> <header class="course-profile">
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
<section class="intro"> <section class="intro">
<hgroup> <hgroup>
<h1> <h1>
${course.display_number_with_default | h}: ${get_course_about_section(course, "title")} ${get_course_about_section(course, "title")}
% if not self.theme_enabled(): % if not self.theme_enabled():
<a href="#">${get_course_about_section(course, "university")}</a> <a href="#">${get_course_about_section(course, "university")}</a>
% endif % endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment