I'm working on a Google App Engine project using Django. I noticed that for some reason, the Django administration system page lists only 301 entities for one model, and 301 entities for another model. But there are actually over 500 stored instances for both of these models. What could be causing this problem?
Why would a Django admin site limited to 301 entries?
226 views Asked by ine At
2
There are 2 answers
0
On
Maybe the following SO question is related: Django admin does not show all entities
The problem could be that some ForeignKeys of instances of the model you want to list in the admin points to objects in the database that don't exist.
Please check that all ForeignKey values of the model are set correctly.
Actually, it looks like this is a limit hardcoded into an older version of App Engine Patch.
from patch.py: