We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a06d52 commit 8d9a581Copy full SHA for 8d9a581
django_tables2/views.py
@@ -26,7 +26,7 @@ class SingleTableMixin(object):
26
table_class = None
27
table_data = None
28
context_table_name = None
29
- paginate = True
+ paginate = None
30
31
def get_table(self):
32
"""
@@ -69,7 +69,8 @@ def get_table_data(self):
69
70
def get_paginate(self):
71
72
- Returns pagination options: True for default, False for no pagination, and a dictionary for custom pagination.
+ Returns pagination options: True for standard pagination (default),
73
+ False for no pagination, and a dictionary for custom pagination.
74
75
if isinstance(self.paginate, int):
76
return bool(self.paginate)
0 commit comments