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
- ${xblock.display_name} + ${xblock.display_name_with_default}
    diff --git a/cms/templates/studio_vertical_wrapper.html b/cms/templates/studio_vertical_wrapper.html index 774b49bf95..226811d790 100644 --- a/cms/templates/studio_vertical_wrapper.html +++ b/cms/templates/studio_vertical_wrapper.html @@ -8,7 +8,7 @@ ${_('Expand or Collapse')} - ${xblock.display_name | h} + ${xblock.display_name_with_default | h}
    diff --git a/cms/templates/studio_xblock_wrapper.html b/cms/templates/studio_xblock_wrapper.html index 870c2509b4..cd97eeb7fd 100644 --- a/cms/templates/studio_xblock_wrapper.html +++ b/cms/templates/studio_xblock_wrapper.html @@ -8,7 +8,7 @@ % endif
    - ${xblock.display_name | h} + ${xblock.display_name_with_default | h}