有人有 django-preferences 应用程序或类似应用程序的经验吗?

发布于 2024-09-27 11:01:17 字数 417 浏览 3 评论 0原文

我仍在尝试在我的管理站点中嵌入一个页面,在其中我可以让用户更改一些全局变量(例如在 WordPress 中),例如站点名称、元关键字等。

显然有一个应用程序可以执行此操作,但我无法获取它可以工作(我使用 Django 1.3): http://github.com/praekelt/django-preferences

注意:我尝试了两个 frompreferences.model import Preferencesfrompreferences.models import Preferences 它仍然找不到 Preferences 对象。

非常感谢!

Im still trying to embed a page in my admin site where I can let the user to change some global variables (like in wordpress) such as the site name, meta keywords, etc.

Apparently there is an app that does this but I cannot get it to work (Im using Django 1.3):
http://github.com/praekelt/django-preferences

NOTE: I tried both from preferences.model import Preferences and from preferences.models import Preferences it still cannot find the Preferences object.

Many thanks!

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

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

发布评论

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

评论(1

猥琐帝 2024-10-04 11:01:17

文档不正确,应该是:

from preferences.models import Preferences

我已更正文档

正如安德鲁所建议的那样,您的问题似乎是由于模块安装不正确引起的。如果您不介意将其安装为系统范围的模块,请运行以下命令:

$ easy_install django-preferences

The docs were incorrect, it should read:

from preferences.models import Preferences

I've corrected the docs.

As Andrew suggest though it looks like your problem is caused by the module not being correctly installed. If you don't mind installing it as a system wide module, run the following:

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