Django 管理应用程序

发布于 2024-08-22 17:49:25 字数 180 浏览 6 评论 0原文

我正在构建一个应用程序。该应用程序将构建一个民意调查或测验。 所以我的模型将有一个类型字段(投票、测验)

现在我想在管理应用程序列表中显示 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 技术交流群。

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

发布评论

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

评论(2

一口甜 2024-08-29 17:49:25

简单浏览一下 django 的第二个教程页面。它描述了如何做到这一点。

http://docs.djangoproject.com/en/1.1/intro /tutorial02/#intro-tutorial02

  1. 您需要激活管理站点:
    1. 将“django.contrib.admin”添加到您的 INSTALLED_APPS 设置中。
    2. 运行 python manage.pysyncdb。
    3. 更新 urls.py

# 取消注释接下来的两行以启用管理:

from django.contrib import admin
admin.autodiscover()

将下一行添加到 urlpatterns

    (r'^admin/', include(admin.site.urls)),

2 。您需要将模型添加到管理界面

您只需在应用程序目录(例如 polls)中创建一个 admin.py 并填写以下内容:

from mysite.polls.models import Poll, Quiz
from django.contrib import admin

admin.site.register(Poll)
admin.site.register(Quiz)

当然,您必须更改第一行以适合您的项目名称。

希望这会有所帮助!

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

  1. You need to activate the admin site:
    1. Add "django.contrib.admin" to your INSTALLED_APPS setting.
    2. Run python manage.py syncdb.
    3. update urls.py

# Uncomment the next two lines to enable the admin:

from django.contrib import admin
admin.autodiscover()

add the next line to urlpatterns

    (r'^admin/', include(admin.site.urls)),

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:

from mysite.polls.models import Poll, Quiz
from django.contrib import admin

admin.site.register(Poll)
admin.site.register(Quiz)

you have to change the first line of course to fit with your project name.

Hope this will help!

梦萦几度 2024-08-29 17:49:25

唉!我想通了!
您使用的是 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.

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