I have two models that are linked by a foreign key relationship:
class A(models.Model):
q1 = models.CharField(max_length=60)
q2 = models.CharField(max_length=60)
...
class B(models.Model):
b = models.CharField(max_length=60)
a = models.ForeignKey("A", on_delete=models.CASCADE)
In my admin site I have the A model showing, and ideally would like to keep it that way.
Is there a way for me to within the individual A instances show the B instances? I have only been able to find solutions for the reverse (showing a dropdown of A instances in the individual B instances).