I want my django_tables2 table to be able to add new rows at the top as new data comes in from the server (possibly by polling, or possibly via a push). I don't want to do a server page refresh, just scroll the existing rows down and add the new rows at the top.
I know I can just set up a periodic refresh from the server but that's not what I want to do.
Is this possible? After much searching, I have not found any reference to doing this.
Thanks.