There seems to be no auto-complete support for Django, when it comes to changing the default admin.modelAdmin
class in Django. What I mean by this is demonstrated below:
fieldsets = [
('Story', {
'fields': ('title', 'url', 'points'),
}),
('Moderator', {
# Un-Comment the line below to make set collapsible
'classes': (),
'fields': ('moderator',),
}),
('Change History', {
# Un-Comment the line below to make set collapsible
'classes': ('collapse',),
'fields': ('created_at', 'updated_at'),
}),
]
The problem is that nothing pops up, when you try to configure something like 'classes': ('...',),
, is there any way to add auto-complete or any feature I am missing right now?