diff --git a/cms/templates/settings.html b/cms/templates/settings.html
index 55dd2b67b2..a331c481a6 100644
--- a/cms/templates/settings.html
+++ b/cms/templates/settings.html
@@ -190,7 +190,13 @@ from contentstore import utils
- ${_("Introductions, prerequisites, FAQs that are used on ")}${_("your course summary page")}${_(" (formatted in HTML)")}
+ <%def name='overview_text()'><%
+ a_link_start = '' + _("your course summary page") + ''
+ a_link = a_link_start + utils.get_lms_link_for_about_page(course_location) + a_link_end
+ text = _("Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)") % a_link
+ %>${text}%def>
+ ${overview_text()}