I have a model with choices list (models.py):
models.py
class Product(models.Model): ... UNITS_L = 1 UNITS_SL = 2 UNITS_XL = 3 PRODUCT
You can use 'get_FOO_display' to achieve this in the Django Admin:
class ProductReportResource(resources.ModelResource): product_size = fields.Field( attribute='get_product_size_display', column_name=_(u'Product Size') )