*Is there a thousand separator (like 1,000) for list_editable in django?
#model.py class Product(models.Model): deal_price = models.IntegerField(db_index=True, b
In case anybody also wants to display more big numbers:
Add to the default settings in the your settings file (e.g. settings.py):
USE_THOUSAND_SEPARATOR = True
Source