Django simple-apps 模板错误 - 没有 StringUtil

发布于 2024-11-03 22:30:21 字数 466 浏览 3 评论 0原文

我正在尝试使用 中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终弃我 2024-11-10 22:30:21

这是他在工具应用程序中的模板标签之一

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文