10 lines
354 B
Python
10 lines
354 B
Python
# -*- coding: UTF-8 -*-
|
|
from rest_framework import pagination
|
|
from rest_framework.response import Response
|
|
|
|
class PagePaginationWithPageCount(pagination.PageNumberPagination):
|
|
def get_paginated_response(self, data):
|
|
response = super().get_paginated_response(data)
|
|
response.data['page_count'] = self.page.paginator.num_pages
|
|
return response
|