My model is returning a Decimal(1234567.50), I can\'t seem to display the Decimal with a thousands separator. Does Django have a way to do this? Do I need to create my own templ
You can use the intcomma filter, but I don't think it will work on Decimal objects and it works on Decimal objects. You'll have to convert to float/string first.