我为什么会收到此 Django 错误?

发布于 2024-10-11 13:59:14 字数 654 浏览 3 评论 0原文

我安装了一个名为 Django-notification 的应用程序,它使用 Django-pagination。但是,它找不到 Django_pagination 模板标签!

Exception Type: TemplateSyntaxError at /notifications
Exception Value: 'pagination_tags' is not a valid tag library: Template library pagination_tags not found, tried django.templatetags.pagination_tags,django.contrib.admin.templatetags.pagination_tags,django.contrib.humanize.templatetags.pagination_tags,pinax.templatetags.templatetags.pagination_tags

为什么?我已经安装了 Django 分页。它位于我的站点包中: django_pagination-1.0.7-py2.6.egg

接下来,我将“pagination”放入我的 INSTALLED_APPS 中。

我什至在我的views.py 中添加了分页。尽管我怀疑这会有所作为。

I installed an app called Django-notification, which uses Django-pagination. However, it can't find the Django_pagination template tags!

Exception Type: TemplateSyntaxError at /notifications
Exception Value: 'pagination_tags' is not a valid tag library: Template library pagination_tags not found, tried django.templatetags.pagination_tags,django.contrib.admin.templatetags.pagination_tags,django.contrib.humanize.templatetags.pagination_tags,pinax.templatetags.templatetags.pagination_tags

Why? I installed Django-pagination already. It's in my site-packages: django_pagination-1.0.7-py2.6.egg

Next, I put "pagination" in my INSTALLED_APPS.

I even imorted pagination in my views.py. Although I doubt that'll make a difference.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

反话 2024-10-18 13:59:14

只是为了确保,您是否在模板中调用了 {% load pagination_tags %}

来自 django 的文档

包含自定义标签的应用必须位于 INSTALLED_APPS 中
为了让 {% load %} 标签发挥作用。
这是一项安全功能:它允许
你为许多人托管Python代码
单个主机上的模板库
机器而无需启用对所有内容的访问
每个 Django 安装都有它们。

模板标签中放置的模块数量没有限制
包裹。请记住,{%
load %} 语句将加载
给定 Python 的标签/过滤器
模块名称,而不是应用程序的名称。

要成为有效的标签库,模块必须包含模块级
名为寄存器的变量是
模板.库实例...

Just to make sure, have you called {% load pagination_tags %} in your template?

From django's documentation:

The app that contains the custom tags must be in INSTALLED_APPS in
order for the {% load %} tag to work.
This is a security feature: It allows
you to host Python code for many
template libraries on a single host
machine without enabling access to all
of them for every Django installation.

There's no limit on how many modules you put in the templatetags
package. Just keep in mind that a {%
load %} statement will load
tags/filters for the given Python
module name, not the name of the app.

To be a valid tag library, the module must contain a module-level
variable named register that is a
template.Library instance...

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