diff options
| author | AK <andrei.avk@gmail.com> | 2018-03-24 12:45:09 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-03-26 11:40:54 -0400 |
| commit | 3990d740180bc49a1479b8a2918b0878df65518a (patch) | |
| tree | afe643b4ad21af965500363d30311934427467b5 /docs/ref/class-based-views | |
| parent | 4554f9a783665d64b59c35b53ae71178e56ac783 (diff) | |
Added a pagination example to ListView docs.
Diffstat (limited to 'docs/ref/class-based-views')
| -rw-r--r-- | docs/ref/class-based-views/generic-display.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/class-based-views/generic-display.txt b/docs/ref/class-based-views/generic-display.txt index 8ebe871685..15d3351d48 100644 --- a/docs/ref/class-based-views/generic-display.txt +++ b/docs/ref/class-based-views/generic-display.txt @@ -115,6 +115,7 @@ many projects they are typically the most commonly used views. class ArticleListView(ListView): model = Article + paginate_by = 100 # if pagination is desired def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) @@ -144,6 +145,10 @@ many projects they are typically the most commonly used views. {% endfor %} </ul> + If you're using pagination, you can adapt the :ref:`example template from + the pagination docs <using-paginator-in-view>`. Change instances of + ``contacts`` in that example template to ``page_obj``. + .. class:: django.views.generic.list.BaseListView A base view for displaying a list of objects. It is not intended to be used |
