## base.html <%namespace name="foo" file="foo.html" inheritable="True"/> ${next.body()} ## somefile.html <%inherit file="base.html"/> ${self.foo.bar()}
How to call this line using custom mako tag
<%foo:bar
<%self:foo:bar
-> this doesn't seem to work
Srikanth Bemineni