Hi
Trying to undertstand Django Admin a bit better, but I find the django documentation a bit lacking sometimes (or perhaps my capacity to understand).
I know you can use fieldsets to control the layout of certain admin pages. What I cant seem to grasp is what the fieldset names are.
If i have the following class
Clas Demo(model.Model):
Name = models.CharField(max_length=150)
Address = models.CharField(max_length=150)
City = models.CharField(max_length=50)
Zip = models.CharField(max_length=15)
and and Admin class as the following
Class DemoAdmin(admin.ModelAdmin):
list_display = ('name', 'City')
In this, albeit contrived example, what possible fieldsets could I use?
Thanks