我正在使用Python / Django设计网页,当我尝试运行我的程序服务器时,收到一条错误消息:
TemplateServerError:
'account_tags' is not a valid tag library: Template library account_tags not found, tried django.templatetags.account_tags,django.contrib.admin.templatetags.account_tags,django.contrib.staticfiles.templatetags.account_tags,django_forms_bootstrap.templatetags.account_tags,pinax_theme_bootstrap.templatetags.account_tags,pinax_theme_foundation.templatetags.account_tags,bootstrapform.templatetags.account_tags,metron.templatetags.account_tags
问题来自这行代码:
{% load account_tags %}
有谁知道我还可以安装什么来获取正确的' account_tags'图书馆?谢谢!
答案 0 :(得分:0)
看起来account_tags
库来自django-user-accounts
。 installation instructions表示您应将'account'
添加到INSTALLED_APPS
设置。