这有可能吗? 我的项目文件夹结构如下所示:
my_project:
app1:
templatetags:
my_tags1.py (contains simple tags and inclusion tags)
app2:
templatetags:
my_tags2.py (contains some simple tags)
templates:
app1: index.html
app2: index.html
这些想法是在模板app2 / index.html上使用my_tags1.py中的标记。我只是尝试过:
{% load my_tags1 %}
但这给了我一个错误。
答案 0 :(得分:2)
确保标记文件具有不同的名称。