Django:无法加载模板标签

时间:2010-12-20 01:43:06

标签: django templates tags

我正在使用Django 1.2.1而且我在尝试加载我的时遇到了问题 模板标签:

{% load mytags %}

TemplateSyntaxError at /myapp/

'mytags' is not a valid tag library: Template library mytags not
found, tried django.templatetags.mytags

它在myproject/myapp/templatetags/mytags.py中定义。

nate@nate-desktop:~/work/django-projects/myproject$ ls myapp/templatetags/
mytags.py  __init.py__
nate@nate-desktop:~/work/django-projects/myproject$ more
myapp/templatetags/mytags.py


from django import template

register = template.Library()

@register.simple_tag
def myclass(request):
    return request.path

我将'myapp'添加到INSTALLED_APPS,并更新TEMPLATE_LOADERS(作为 根据StackOverflow的建议):

TEMPLATE_LOADERS = (
   'django.template.loaders.filesystem.Loader',
   'django.template.loaders.app_directories.Loader',
   'django.template.loaders.eggs.Loader',
   'django.template.loaders.app_directories.load_template_source',
)

当我启动服务器时,我看到此警告消息:

/usr/local/lib/python2.6/dist-packages/django/template/loaders/eggs.py:4:
UserWarning: Module _mysql was already imported from
/usr/lib/pymodules/python2.6/_mysql.so, but
/usr/lib/pymodules/python2.6 is being added to sys.path

当我尝试在shell中导入我的模块时,我也无法导入它:

>>> from django.templatetags import mytags
Traceback (most recent call last):
 File "<console>", line 1, in <module>
ImportError: cannot import name mytags
>>> from myapp.templatetags import mytags
Traceback (most recent call last):
 File "<console>", line 1, in <module>
ImportError: No module named templatetags

这是否意味着我的路径或设置有问题?有什么想法吗?

3 个答案:

答案 0 :(得分:86)

对于遇到此问题的其他人的说明:您需要重新启动开发服务器以在django应用程序中注册新文件。

答案 1 :(得分:15)

我的问题是由于一个错字。我在templatetags __init.py__中调用了该文件,但它应该被命名为__init__.py

答案 2 :(得分:7)

我有同样的问题。问题是我使用的是共享的templatetags目录,并且其中没有__init__.py。添加了空文件,重启服务器,一切都很顺利。