我有一个表格,用户可以在其中检查他们是否拥有特定品牌的商品。选中该框后,选中的项目下方会出现一个文本框以进行产品评论。
我的models.py
样子:
class Brand(models.Model):
owned_brand = BooleanField(default=False)
brand_name = models.CharField(max_length=300)
class Product(models.Model):
brand = models.ForeignKey(Brand, unique=True)
#Other fields that we'll ignore for this exercise go here...
product_review = models.CharField(max_length=300)
我想要这样的伪代码:
for each brand in Brand.entry.all():
display form for that brand
我将如何在 Django 中做到这一点?