diff options
| author | Tom Christie | 2015-02-09 17:01:41 +0000 |
|---|---|---|
| committer | Tom Christie | 2015-02-09 17:01:41 +0000 |
| commit | 407480b4840990ff17f9a33b293cfcf15bb6f7c5 (patch) | |
| tree | bafc4c1795159bbd95cfbe30788a16e69c1a9ed0 /docs/api-guide | |
| parent | 0240df1a383342aa6fbb8ea3effa0482ae213d76 (diff) | |
| download | django-rest-framework-407480b4840990ff17f9a33b293cfcf15bb6f7c5.tar.bz2 | |
Minor docs work
Diffstat (limited to 'docs/api-guide')
| -rw-r--r-- | docs/api-guide/pagination.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/api-guide/pagination.md b/docs/api-guide/pagination.md index 8ab2edd5..bae579a6 100644 --- a/docs/api-guide/pagination.md +++ b/docs/api-guide/pagination.md @@ -53,12 +53,22 @@ Or apply the style globally, using the `DEFAULT_PAGINATION_CLASS` settings key. REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'apps.core.pagination.StandardResultsSetPagination'
} +--- + # API Reference ## PageNumberPagination +**TODO** + ## LimitOffsetPagination +**TODO** + +## CursorPagination + +**TODO** + --- # Custom pagination styles @@ -111,6 +121,12 @@ API responses for list endpoints will now include a `Link` header, instead of in --- +# HTML pagination controls + +## Customizing the controls + +--- + # Third party packages The following third party packages are also available. |
