class B(A):
class Meta:
proxy=True
class F(models.Model):
b = models.ForeignKey(B, related_name="bffs")
class C(B):
class Meta:
proxy=True
}}}
and when we try
{{{
qset = C.objects.filter(bffs__in=whatever)
}}}
we get "bffs not recognized, options are ..."
Not sure if this still happens with master, will try to repro later.
--
Ticket URL: <https://code.djangoproject.com/ticket/27581>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
Comment (by Simon Charette):
This should be fixed by 5b980897f2da3c048d88029af554e0fc4be68a8e in 1.10
and master.
--
Ticket URL: <https://code.djangoproject.com/ticket/27581#comment:1>
* status: new => closed
* resolution: => fixed
Comment:
I confirmed this was fixed in Django 1.10.
--
Ticket URL: <https://code.djangoproject.com/ticket/27581#comment:2>