構建一個應用程序以快速將數字添加到外鍵。在Model Admin中編輯ForeignKey的所有實例的所有屬性Django
所以我對Django來說很新,我已經在這裏和Django的文檔中尋找相關的問題。我發現的是內聯AdminModel,但那不是真的,我想要的。
from django.db import models
from django.utils.encoding import python_2_unicode_compatible
import datetime
from django.utils import timezone
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date= models.DateTimeField('date published')
def __str__(self):
return self.question_text
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete= models.CASCADE)
choice_text = models.CharField(max_length = 200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text
我想有一個與ForeignKey.So例如所有實例表,使用教程代碼,它應該是可以同時編輯每choice_text和票對所有問題(這樣一個未必必須在不同的問題之間跳轉才能添加內容)。這可能嗎? 在此先感謝您的幫助!