-
-
Notifications
You must be signed in to change notification settings - Fork 302
Open
Description
Hello,
First off thanks for creating this package!
I am running into an issue now where we needed to create two different admin pages and creating proxy models seems like a good idea to use the same model have this separation or grouping. However, when registering the proxy models to their own separate ModelAdmins, the get_queryset() returns an empty set and results are not shown.
I've posted on SO
When I tried creating the object using the regular Django Model class, I am able to query the proxy model and get the created object.
from django.db import models
class Person(models.Model):
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)
class MyPerson(Person):
class Meta:
proxy = True
def do_something(self):
# ...
pass
>>> p = Person.objects.create(first_name="foobar")
>>> p
<Person: Person object (4)>
>>> MyPerson.objects.all()
<QuerySet [<MyPerson: MyPerson object (4)>]>
However, when I use the PolymorphicModel and query for proxy model, the queryset is empty.
class Person(PolymorphicModel):
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)
>>> p = Person.objects.create(first_name="foobar")
>>> MyPerson.objects.all()
<PolymorphicQuerySet []>
Shouldn't we expect the Queryset to contain the Person object we created?
sam-ghosh, serkanozer, thejpanganiban, sfiggis, hayrullinmar and 1 more
Metadata
Metadata
Assignees
Labels
No labels