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.
10 lines
256 B
HTML
10 lines
256 B
HTML
<%page expression_filter="h"/>
|
|
<%!
|
|
from openedx.core.djangolib.markup import HTML
|
|
%>
|
|
|
|
<%inherit file="dashboard.html" />
|
|
<%block name="pagetitle">Overridden Title!</%block>
|
|
${HTML(parent.body())}
|
|
<%block name="bodyextra">Overriden Body Extra!</%block>
|