class Book(models.Model): title = models.CharField(..., null=True) type = models.CharField(...) author = models.CharField(...)
I have a sim
Apropos @Lorenz @mrts answer
with Django 2.1 I found that exclude does not work if the field is already specified via fields = .
In that case you may use
self.fields.remove('title')
fields will have to be defined as a list [] for this to work