From aef211b115c02745ffb41f3ef772ca336a86515a Mon Sep 17 00:00:00 2001 From: Alasdair Nicol Date: Fri, 10 Apr 2015 11:44:44 +0100 Subject: [PATCH] Clarify that you need to set table_pagination=False to disable pagination --- docs/pages/generic-mixins.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/pages/generic-mixins.rst b/docs/pages/generic-mixins.rst index dda8c66..c741fa9 100644 --- a/docs/pages/generic-mixins.rst +++ b/docs/pages/generic-mixins.rst @@ -11,7 +11,9 @@ The following view parameters are supported: - ``table_class`` –- the table class to use, e.g. ``SimpleTable`` - ``table_data`` (or ``get_table_data()``) -- the data used to populate the table - ``context_table_name`` -- the name of template variable containing the table object -- ``table_pagination`` -- pagination options to pass to `.RequestConfig` +- ``table_pagination`` (or ``get_table_pagination``) -- pagination + options to pass to `.RequestConfig`. Set ``table_pagination=False`` + to disable pagination. .. __: https://docs.djangoproject.com/en/1.3/topics/class-based-views/