let's say I define a function in my model to return a formatted value like:
def formatMoney(self):
return '$' + self.money
How can I use this on my view?
Well I guess I expressed myself poorly. I'm trying to use it on the template file not in the view class as I'm iterating in the template file.