Hi,
I would like to add a third column in the admin view for Product -> Option Groups
Currently there are two columns: 'Site' and 'Name of Option Group'
(It is the admin page where it says 'Select Option Group to change'
The column I want to add is 'Detailed Description'. ie the 'description' field from the model.
I have done this by modifying the satchmo source, but obviously that is not the preferred way to do it.
Here is what I changed: In src/satchmo/satchmo/apps/product/admin.py I added the following line to
class OptionGroupOptions(admin.ModelAdmin):
list_display += ('description',)
Is it possible to do this without changing the original Satchmo source?
Many thanks,
Thomas