Django找不到我的模板标签,即使它在INSTALLED_APPS中并且有一个__init__.py

时间:2010-05-06 01:19:21

标签: django django-templates

我刚刚将django-compress安装到/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/compress。

我将'compress'添加到INSTALLED_APPS

在我的模板文件中,我写了{% load compressed %}。我收到了错误:

  

'compressed'不是有效标记   library:无法加载模板   图书馆来自   django.templatetags.compressed,没有   模块名为compressed

我确认压缩中有__init__.pycompress/templatetags/中也有import compress。我尝试将compress目录放入PYTHONPATH。我运行了python并写了{{1}},这很有用。

我还能尝试什么?

1 个答案:

答案 0 :(得分:1)

好的,我找到了解决方案。可能你得到了谷歌代码的源代码,不再维护存储库(如文档中所述)。最新版本可在以下网址获得:http://github.com/pelme/django-compress

切换到这一切后,一切正常。