I have two models linked one-to-many relationships:
ModelA:
field_1
..
field_n
ModelB:
some_field = ...
field = ForeignKey(ModelA)
What I need to do so that when opening an entry of ModelB in Admin site, other then all ModelB fields, all fields of ModelA are displayed instead of field?