diff --git a/cms/templates/container.html b/cms/templates/container.html
index dda42724cd..076d9c5649 100644
--- a/cms/templates/container.html
+++ b/cms/templates/container.html
@@ -16,7 +16,7 @@ from django.utils.translation import ugettext as _
<%
xblock_info = {
'id': str(xblock_locator),
- 'display-name': xblock.display_name,
+ 'display-name': xblock.display_name_with_default,
'category': xblock.category,
};
%>
@@ -53,10 +53,10 @@ xblock_info = {
%>
% if parent_url:
${parent.display_name | h}
+ class="navigation-link navigation-parent">${parent.display_name_with_default | h}
% endif
% endfor
- ${xblock.display_name | h}
+ ${xblock.display_name_with_default | h}
diff --git a/cms/templates/container_xblock_component.html b/cms/templates/container_xblock_component.html
index 135b1ebe82..cd91f8b50f 100644
--- a/cms/templates/container_xblock_component.html
+++ b/cms/templates/container_xblock_component.html
@@ -7,7 +7,7 @@ from contentstore.views.helpers import xblock_studio_url