这是我在 Pyramid 中使用的一些代码,用于将宏加载到我的 Chameleon 模板中:
@subscriber(BeforeRender)
def add_base_templates(event):
"""Define the base templates."""
main_template = get_renderer('../templates/restaurant.pt').implementation()
event.update({ 'main_template': main_template })
如果没有 Pyramid,我将如何实现同样的目标?例如,在这段代码中:
from chameleon import PageTemplateFile
path = os.path.dirname(__file__)
lizard = PageTemplateFile(os.path.join(path, '..', 'emails', template+'.pt'))
html = lizard(**data)