所以,这就是我现在的代码:
当我点击产品时,我希望得到这个:
所以,现在我的代码只允许我获得一个产品,但我想选择添加无限量的产品。
这是我的代码:
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
我该怎么做?或者说,这可能吗?