diff --git a/lms/templates/discussion/index.html b/lms/templates/discussion/index.html
index d8a2607944..af564cabe3 100644
--- a/lms/templates/discussion/index.html
+++ b/lms/templates/discussion/index.html
@@ -1,7 +1,7 @@
<%inherit file="../main.html" />
<%namespace name='static' file='../static_content.html'/>
<%block name="bodyclass">discussion%block>
-<%block name="title">
Discussion – MITx 6.002x%block>
+<%block name="title">Discussion – ${course.number}%block>
<%block name="headextra">
<%static:css group='course'/>
diff --git a/lms/templates/discussion/single_thread.html b/lms/templates/discussion/single_thread.html
index 3a03c9174a..111f35cac9 100644
--- a/lms/templates/discussion/single_thread.html
+++ b/lms/templates/discussion/single_thread.html
@@ -1,7 +1,7 @@
<%inherit file="../main.html" />
<%namespace name='static' file='../static_content.html'/>
<%block name="bodyclass">discussion%block>
-<%block name="title">Discussion – MITx 6.002x%block>
+<%block name="title">Discussion – ${course.number}%block>
<%block name="headextra">
<%static:css group='course'/>
diff --git a/lms/templates/discussion/user_profile.html b/lms/templates/discussion/user_profile.html
index e5234abca3..1bc6addffc 100644
--- a/lms/templates/discussion/user_profile.html
+++ b/lms/templates/discussion/user_profile.html
@@ -3,7 +3,7 @@
<%inherit file="../main.html" />
<%namespace name='static' file='../static_content.html'/>
<%block name="bodyclass">discussion%block>
-<%block name="title">Discussion – MITx 6.002x%block>
+<%block name="title">Discussion – ${course.number}%block>
<%block name="headextra">
<%static:css group='course'/>
@@ -12,6 +12,7 @@
<%block name="js_extra">
<%include file="_js_body_dependencies.html" />
+<%static:js group='discussion'/>
%block>
<%include file="../courseware/course_navigation.html" args="active_page='discussion'" />