+1 vote
in Data Handling by

What to do when you don’t see all objects appearing on the admin site?

1 Answer

0 votes
by

Inconsistent row counts are a result of missing Foreign Key values or if the Foreign Key field is set to null=False. If the ForeignKey points to a record that does not exist and if that foreign is present in the list_display method, the record will not be shown the admin changelist.

...