I have tried every combo of the fieldsets tuple, but I can't figure it out.
Also, in the fieldsets there's a key called "fields". Does one really have to
name each and every field in the model (again) in this dict?
Here's my basic styling of the admin:
class CommentsInline(admin.TabularInline):
model = Comment
class ToonAdmin(admin.ModelAdmin):
prepopulated_fields = {"slug": ("title",)} #sluggify the title field
inlines = [CommentsInline] #Use the inline thing above.
ordering = ['pubdate']
Thx,
\d
\d
Perhaps someone can point me to an example?
\d