所以,这就是我的代码现在的样子:
当我点击产品时,我希望得到这个:
所以,现在我的代码只允许我获得一种产品,但我想要添加无限数量的产品的选项。
这是我的代码:
class PurchaseOrder(models.Model):
product = models.ForeignKey('Product')
vendor = models.ForeignKey('VendorProfile')
dollar_amount = models.FloatField(verbose_name='Price')
class Product(models.Model):
products = models.CharField(max_length=256)
def __unicode__(self):
return self.products
我怎样才能做到这一点?或者,更确切地说,这可能吗?