django-compressor:模板无效

时间:2014-01-23 18:14:46

标签: django django-compressor

我正在为项目使用django-compressor,但是当我运行./manage compress命令时,我得到了一个错误列表,如:

Invalid template /home/somepath: 'some_template_tags' is not a valid tag library: ImportError raised loading postman.templatetags.some_template_tags: cannot import name SomeLibrary

我没有任何额外信息。此外,应用程序已添加到INSTALLED_APPS,模板标记在没有django-compressor的情况下正常运行。

更新

这是settings.py文件:

INSTALLED_APPS = (
     'django.contrib.staticfiles',
     'cms',
     'mptt',
     'menus',
     'south',
     'sekizai',
     'classytags',
     'postman',
     # More apps
     'compressor',
)
# More lines
STATICFILES_FINDERS = (
     'django.contrib.staticfiles.finders.FileSystemFinder',
     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
     'compressor.finders.CompressorFinder',
)

1 个答案:

答案 0 :(得分:0)

问题是邮递员。我在postman / models.py文件中用get_user_model()替换了函数User