Here's a hack I'm currently using:
class ProductMaxIPPortEldCountMonthlyTable(tables.Table):
ip_count = tables.TemplateColumn('{% load humanize %}{{ record.ip_count|intcomma }} ')
I'm using django.contrib.humanize
. Is there a cleaner way to achieve this effect?