added pagination in leaderboard admin

This commit is contained in:
abutalib-kiwi
2023-08-11 15:54:54 +05:30
parent 18cb885410
commit d5c30f2029
2 changed files with 23 additions and 1 deletions

13
web_admin/pagination.py Normal file
View File

@ -0,0 +1,13 @@
"""
web_admin pagination file
"""
from rest_framework.pagination import PageNumberPagination
class CustomPageNumberPagination(PageNumberPagination):
"""
custom paginator class
"""
page_size = 10 # Set the desired page size
page_size_query_param = 'page_size'
max_page_size = 100 # Set a maximum page size if needed