What is the most straightforward way to edit some fields from a batch of objects using a formset (see below), while displaying along other fields from these models objects?
For example:
I want to display the title of a set of 10 Book objects and a form for each one in which it is possible to edit their ISBN and description.
class BookForm(ModelForm):
class Meta:
model = Book
fields = ('ISBN', 'description') # The Book model has many more fields
BookFormSet = modelformset_factory(Book, form=BookForm)