1👍
You can use the reverse relationship. You can use the lower case name of the related model, in your case two
and three
eg:
one_tow_three = One.objects.all().values('two','two__three')
Source:stackexchange.com
1👍
You can use the reverse relationship. You can use the lower case name of the related model, in your case two
and three
eg:
one_tow_three = One.objects.all().values('two','two__three')