Pass the pagination to the right place
This commit is contained in:
parent
8a165fd44d
commit
fa11be741a
|
@ -157,7 +157,7 @@ def drilldown_search(request, return_context=False, template=None):
|
|||
class DrilldownTableView(SingleTableView):
|
||||
table_class = DrilldownTable
|
||||
template_name = "ui/drilldown/table_results.html"
|
||||
paginate_by = 5
|
||||
paginate_by = settings.DRILLDOWN_RESULTS_PER_PAGE
|
||||
|
||||
def get_queryset(self, request, **kwargs):
|
||||
context = drilldown_search(request, return_context=True)
|
||||
|
|
|
@ -39,4 +39,3 @@ class DrilldownTable(Table):
|
|||
num_users = Column()
|
||||
template_name = "ui/drilldown/table_results.html"
|
||||
paginate_by = settings.DRILLDOWN_RESULTS_PER_PAGE
|
||||
row_attrs = "is-primary"
|
||||
|
|
Loading…
Reference in New Issue