I have a Django app rendering a large table. My global purpose is to render only a small fraction of table, say, 10-20 records, on page load so that the user does not wait years, and then asynchronously upload the rest of the table in background ajax call making the rows invisible. Then, as the user scrolls down, the rows consecutively show up.I have a Django app rendering a large table. My