Pretty raw_id_fields with django-salmonella and django-grappelli
Sometimes, when dealing with m2m relationships, we need to use the raw_id_fields property of the ModelAdmin class, in order to choose the related objects in a new page, where we can sort and filter the available items.
Without doubt the information that the widget used by django to treat such fields gives us is a bit poor. We only see the related objects's ids, it would be nicer to have the string representation of the object.
Here comes django-salmonella:
A raw_id_fields widget replacement that handles display of an object's string ...