这是我在图像中的内容:
我想显示我用绿色着色的内容。基本上我想显示每种产品的成本。对于 Bob,他花费了 12010 美元,而 Jill 花费了 12010 美元,总价为 24020 美元。
到目前为止,这是我的代码:
class PurchaseOrder(models.Model):
product = models.ManyToManyField('Product', null =True)
def get_products(self):
return "<BR> </BR>".join([p.products for p in self.product.all()])
get_products.allow_tags = True
class Product(models.Model):
products = models.CharField(max_length=256, null =True)
price_for_each_item = models.FloatField() #Here is what I want to be displayed as green
我怎样才能做到这一点?请注意,每个产品都有一条新线。因此,我试图将每个单独的项目与该单独项目的价格放在同一行。例如这里是,
鲍勃 $12010.0
吉尔 $12010.0