我想创建一个可重用的模板(几乎就像.NET世界的UserControl),我可以在多个地方应用,例如:
{% for thing in things %}
{% render_thing thing %}
{% endfor %}
其中render_thing是我的自定义包含标记。我的Python代码如下:
def get_full_path(relative_path):
return os.path.join(os.path.dirname(__file__), relative_path)
def render_thing(thing):
return {'thing':thing }
register = template.create_template_register()
register.inclusion_tag(get_full_path('thing.html'))(render_thing)
Where.html是我的小模板。但是,当我运行它时,我收到错误:
TemplateSyntaxError: Invalid block tag: 'render_thing'
我错过了什么?
答案 0 :(得分:3)
如果您使用的是Django 1.2模板,则需要为自定义标记代码而不是文件路径提供Python模块样式的引用。
有full description of the problem and the solution on my blog。
编辑: 很抱歉对你如此高级。这是一个更详尽的解释:
将自定义代码转换为文件,例如my_custom_tags.py
。
获取自定义标记代码所在的.py文件,并将其放在主AppEngine项目目录的子目录中,例如customtags
。
__init__.py
.py
文件中,添加以下代码:
现在,您的自定义标记库中定义的所有自定义标记都可以在模板文件中使用,而无需额外的工作。
答案 1 :(得分:2)
加载模板标记
{% load my_template_library %}
参见手册
答案 2 :(得分:0)
您需要在使用它的每个模板中加载模板标签库。
{% load my_template_library %}