84👍
✅
Define a related_name
to call the reverse accessor.
a = models.OneToOneField(A, related_name='foobar')
# ...
a.foobar
Source:stackexchange.com