我在模型中有以下功能:
@property
def exclusive_price(self):
if(self.discount_price > 0):
return self.list_price - self.discount_price
else:
return self.list_price
我尝试在模板中调用它,但没有输出任何内容。我能做些什么?
{{obj.exlusive_price}}
我在模型中有以下功能:
@property
def exclusive_price(self):
if(self.discount_price > 0):
return self.list_price - self.discount_price
else:
return self.list_price
我尝试在模板中调用它,但没有输出任何内容。我能做些什么?
{{obj.exlusive_price}}