Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
30799a39
Commit
30799a39
authored
Nov 07, 2012
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify NextPageField and PreviousPageField slightly
parent
47b534a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
rest_framework/pagination.py
+6
-6
No files found.
rest_framework/pagination.py
View file @
30799a39
...
...
@@ -4,14 +4,12 @@ from rest_framework.templatetags.rest_framework import replace_query_param
# TODO: Support URLconf kwarg-style paging
class
PageField
(
serializers
.
Field
):
page_field
=
'page'
class
NextPageField
(
PageField
):
class
NextPageField
(
serializers
.
Field
):
"""
Field that returns a link to the next page in paginated results.
"""
page_field
=
'page'
def
to_native
(
self
,
value
):
if
not
value
.
has_next
():
return
None
...
...
@@ -21,10 +19,12 @@ class NextPageField(PageField):
return
replace_query_param
(
url
,
self
.
page_field
,
page
)
class
PreviousPageField
(
Page
Field
):
class
PreviousPageField
(
serializers
.
Field
):
"""
Field that returns a link to the previous page in paginated results.
"""
page_field
=
'page'
def
to_native
(
self
,
value
):
if
not
value
.
has_previous
():
return
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment