Django 管理应用程序
我正在构建一个应用程序。该应用程序将构建一个民意调查或测验。 所以我的模型将有一个类型字段(投票、测验)
现在我想在管理应用程序列表中显示 2 个“类型”。但我不知道如何创建两个应用程序投票和测验。有没有办法在列表中显示 2 个选项,然后当您单击“投票”时,类型字段设置为“投票”,然后填写其余的模型字段。
谢谢
I am building a app. The app will build a Poll OR a Quiz.
So my models will have a type field(Poll, Quiz)
Now i would like to display the 2 "Types" in the admin App list. But i dont what to create two apps Poll and Quiz. Is there a way, to display the 2 options in the list and then when you click on lets say Poll, the type field is set to Poll and then you fill in the rest of the models fields.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单浏览一下 django 的第二个教程页面。它描述了如何做到这一点。
http://docs.djangoproject.com/en/1.1/intro /tutorial02/#intro-tutorial02
2 。您需要将模型添加到管理界面
您只需在应用程序目录(例如 polls)中创建一个 admin.py 并填写以下内容:
当然,您必须更改第一行以适合您的项目名称。
希望这会有所帮助!
have a short look to the second tutorial page of django. It describes the how to do that.
http://docs.djangoproject.com/en/1.1/intro/tutorial02/#intro-tutorial02
2 . You need to add your models to the admin interface
You only have to create a admin.py in your application directory (e.g. polls) and fill in the following content:
you have to change the first line of course to fit with your project name.
Hope this will help!
唉!我想通了!
您使用的是 Django 代理模型
http://docs.djangoproject.com/en/1.1/topics /db/models/#id8
因此,我在 models.py 文件中设置了一个代理模型,然后在 admin.py 中我只是将代理模型用作管理员。
alas!I figured it out!
What you use is a Django Proxy Model
http://docs.djangoproject.com/en/1.1/topics/db/models/#id8
So I set up a Proxy model in my models.py file and then in admin.py I just used the proxy models as Admin.