I have managed to solve it by myself so reporting here if anyone is interested. I have checked and the sql Log shows statements are generated with LIMIT clause (postgre). You have to subclass the ChangeList class ass class MyChangeList(ChangeList): def get_query_set(self): return super(MyChangeList, self).get_query_set()[0:2] #here for test i am retrieving top 2 rows
then in models admin: def get_changelist(self, request, **kwargs): return MyChangeList Bye Nenad -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/yYB6SDT17-sJ. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.