diff --git a/lms/templates/discussion/_blank_slate.html b/lms/templates/discussion/_blank_slate.html
deleted file mode 100644
index 8186b30f3c..0000000000
--- a/lms/templates/discussion/_blank_slate.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<%! from django.utils.translation import ugettext as _ %>
-
- % if performed_search:
- ${_("Sorry! We can't find anything matching your search. Please try another search.")}
- % else:
- ${_("There are no posts here yet. Be the first one to post!")}
- % endif
-
diff --git a/lms/templates/discussion/_js_data.html b/lms/templates/discussion/_js_data.html
deleted file mode 100644
index ba9034ea81..0000000000
--- a/lms/templates/discussion/_js_data.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<%! from django.template.defaultfilters import escapejs %>
-
-
diff --git a/lms/templates/discussion/_recent_active_posts.html b/lms/templates/discussion/_recent_active_posts.html
deleted file mode 100644
index 2d032c2b0a..0000000000
--- a/lms/templates/discussion/_recent_active_posts.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<%!
-from django.utils.translation import ugettext as _
-from django_comment_client.utils import permalink
-%>
-
-% if recent_active_threads:
-
-% endif
diff --git a/lms/templates/discussion/_search_bar.html b/lms/templates/discussion/_search_bar.html
deleted file mode 100644
index a3f4d26294..0000000000
--- a/lms/templates/discussion/_search_bar.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<%!
-from django.utils.translation import ugettext as _
-from urllib import urlencode
-
-def merge(dic1, dic2):
- return dict(dic1.items() + dic2.items())
-
-def base_url_for_search():
- return base_url + '?' + urlencode(merge(query_params, {'page': 1}))
-%>
-
-
- % for thread in threads:
-
${thread['title'] | h}
- % endfor
-
-% endif