Django中的包含标签在Google App Engine上

时间:2011-03-15 00:20:28

标签: python django google-app-engine django-templates

我想创建一个可重用的模板(几乎就像.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'

我错过了什么?

3 个答案:

答案 0 :(得分:3)

如果您使用的是Django 1.2模板,则需要为自定义标记代码而不是文件路径提供Python模块样式的引用。

full description of the problem and the solution on my blog

编辑: 很抱歉对你如此高级。这是一个更详尽的解释:

  1. 将自定义代码转换为文件,例如my_custom_tags.py

  2. 获取自定义标记代码所在的.py文件,并将其放在主AppEngine项目目录的子目录中,例如customtags

  3. 在该新子目录中,创建一个名为__init__.py
  4. 的空文件 在您的AppEngine应用程序的主.py文件中
  5. ,添加以下代码:

    来自google.appengine.ext.webapp导入模板 template.register_template_library( 'customtags.my_custom_tags')

  6. 现在,您的自定义标记库中定义的所有自定义标记都可以在模板文件中使用,而无需额外的工作。

答案 1 :(得分:2)

答案 2 :(得分:0)

您需要在使用它的每个模板中加载模板标签库。

{% load my_template_library %}