[Django]-Django admin raw_id_fields table display

9👍

Ah, OK, this should have been obvious, but it isn’t explained in the Django docs. The list that appears in the raw_id_fields popup uses the same options as the admin object for the referenced model. So in my example, to get a nice looking popup I needed to create a SternProductAdmin object as follows:

class SternProductAdmin(admin.ModelAdmin):
    list_display = ('__unicode__', 'drawing_number', 'drawing_revision',)
    list_filter = ('drawing_number',)
    search_fields = ('drawing_number',)
    actions = None

Hopefully this will help others in the future.

Leave a comment