How can I display objects that link to an object via a ForeignKey in Django (specifically in the admin interface). For example, if I click on an object, I'll not only see the object but also any other object that link to it. e.g. I have a model for "Manufacturer" and another one for "Model"...the "Model" model links to "Manufacturer" via a foreign key.
|
|
You can achieve this using inlines. In your case, where each The admin.py file for your application should look something like:
The Django docs contains details about possible customizations. |
|||
|
|
