How can I append append paginated pages to tables in Django?

paul_so40

New Member
I'm loading query data from a MySQL server into multiple tables. There can be thousands of rows in each table, so I'm trying to setup pagination with a "load more" button at the bottom of each table. Let's say each table initially displays the first 100 rows of data. Is there a simple way to implement a button which will append the next page of query data to the currently selected table?
 
Back
Top