Answer the question
In order to leave comments, you need to log in
Is there a built-in functionality in django to make inline editing of objects of one model (not like in the example, inline from another model)?
The bottom line is that for example there is a list of manufacturers, I would like to make a filling similar to choices in the office. documentation
so that everything can be filled in on one page
Only it is done there as a connection with another model ...
Or does it need to be customized all ??
Answer the question
In order to leave comments, you need to log in
The answer came on stackOverflow:
class ManufacturerAdmin(admin.ModelAdmin):
list_display=('name', 'country', 'link',)
list_display_links = ('link',)
list_editable=('name', 'country',)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question