Django simple-apps 模板错误 - 没有 StringUtil
我正在尝试使用 中的 django 基本应用程序这个网站使一个基本的博客工作。看起来一切顺利,但现在模板不断抛出错误,提示“‘stringutils’不是有效的标签库:找不到模板库 stringutils”。 果然,在模板的很多地方都写着:
{% load stringutils %}
或者
{% load stringutils comments i18n %}
我在任何地方都找不到 stringutils 模板库的提及,有人知道发生了什么事吗?这是我需要安装的标准包吗?或者它是特定于基本应用程序但不知何故没有被放入的东西?
多谢, 亚历克斯
I'm trying to use django basic apps from this site to make a basic blog work. It seemed to be going ok, but now the template keeps throwing an error saying "'stringutils' is not a valid tag library: Template library stringutils not found".
Sure enough, in the template in a number of places it says:
{% load stringutils %}
or
{% load stringutils comments i18n %}
I can't find mention of a stringutils template library anywhere, does anyone know what's going on? Is it a standard package I need to install? Or is it something specific to basic-apps that somehow didn't get put in?
Thanks a lot,
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是他在工具应用程序中的模板标签之一
https:/ /github.com/nathanborror/django-basic-apps/tree/master/basic/tools/templatetags
你可以看看 load 做了什么:
http://docs.djangoproject.com/en/dev/ref/templates/ builtins/#load
您展示的第二个示例只是他在一条语句中加载多个模块。
看起来您需要将工具应用程序添加到您在 pythonpath 中创建的基本文件夹中,并将 basic.tools 添加到已安装的应用程序中。
it's one of his template tags in the tools app
https://github.com/nathanborror/django-basic-apps/tree/master/basic/tools/templatetags
you can take a look at what load does:
http://docs.djangoproject.com/en/dev/ref/templates/builtins/#load
The second example you show is just him loading multiple modules in one statement.
looks like you need to add the tools app to your basic folder you made in your pythonpath, and add basic.tools to your installed apps.