While using django-tables2 I couldn't find how I paginate the table. On the documentation It says enough to set the table for view but doesn't work.
class TableView(SingleTableView):
model = TableModel
table_class = MyTable
template_name = "table.html"