Files
edx-platform/common/test/test-theme/lms/templates/courseware/courses.html
Chandrakant Gopalan f6f29ca49e Allow theme template block overrides.
This allows an overridding template from a theme to inherit from the
same corresponding standard template.

This is useful when you only want to override one or more named blocks,
but otherwise make no modifications to the standard template.
2017-12-22 09:41:35 +01:00

9 lines
344 B
HTML

<%page expression_filter="h"/>
# Include template which does not exist in the theme.
<%include file="/courseware/error-message.html" />
# Include template which is overriden in the theme.
<%include file="/courseware/info.html" />
# Include custom template which only exists in the theme.
<%include file="/courseware/test-theme-custom.html" />