我应该删除“django.contrib.comments”吗?当我通过子类化修改它时,从我安装的应用程序中?

发布于 2024-09-25 05:13:48 字数 290 浏览 11 评论 0原文

我正在定制 django 评论。

根据文档,您需要将自定义应用程序添加到 settings.py 中的 INSTALLED_APPS 中,并将 COMMENTS_APP 设置为您的应用程序名称。

INSTALLED_APPS = [
    ...
    'my_comment_app',
    ...
]

COMMENTS_APP = 'my_comment_app'

我还应该从 INSTALLED_APPS 中删除“django.contrib.comments”吗?

I'm customizing django comments.

According to the docs you'll need to add your customized app to INSTALLED_APPS in settings.py, and set COMMENTS_APP to your app name.

INSTALLED_APPS = [
    ...
    'my_comment_app',
    ...
]

COMMENTS_APP = 'my_comment_app'

Should I also remove 'django.contrib.comments' from INSTALLED_APPS?

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

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

发布评论

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

评论(1

北恋 2024-10-02 05:13:48

如果您只是扩展 contrib.comments 而不是替换它,则不应将其从已安装的应用程序中删除,因为您需要的大多数模板标签都在该应用程序中。

为了让 Django 找到模板,模板标签等应用程序必须位于已安装的应用程序中。

If you are only extending contrib.comments not replacing it, you shouldn't remove it from installed apps since, for example, most of the templatetags you need are in that application.

In order for Django to find the templates, templatetags and so on app must be in the installed apps.

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