I wrote a template that displays a table, something in the form:
<table>
...
</table>
I would like the paginate the table: 10 rows per page.
I've tried using {% autopaginate object_list 10 %}
, but I don't have a specific list to give as parameter (I want the rows of the table).
How can I do so? Thanks