How can I fetch more than 1000 record from data store and put all in one single list to pass to django?
JJG: your solution above is awesome, except that it causes an infinite loop if you have 0 records. (I found this out while testing some of my reports locally).
I modified the start of the while loop to look like this:
while count % 1000 == 0:
current_count = query.count()
if current_count == 0:
break