有人有 django-preferences 应用程序或类似应用程序的经验吗?
我仍在尝试在我的管理站点中嵌入一个页面,在其中我可以让用户更改一些全局变量(例如在 WordPress 中),例如站点名称、元关键字等。
显然有一个应用程序可以执行此操作,但我无法获取它可以工作(我使用 Django 1.3): http://github.com/praekelt/django-preferences
注意:我尝试了两个 frompreferences.model import Preferences
和 frompreferences.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档不正确,应该是:
我已更正文档。
正如安德鲁所建议的那样,您的问题似乎是由于模块安装不正确引起的。如果您不介意将其安装为系统范围的模块,请运行以下命令:
The docs were incorrect, it should read:
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: