From f49cc1fcf0b04f0b7417f8bc32dd100e0fc9fe6b Mon Sep 17 00:00:00 2001 From: Juan Cruz-Benito Date: Wed, 26 Feb 2020 10:40:44 +0100 Subject: [PATCH] Improving description of potential parameters --- jupyterhub/handlers/pages.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/jupyterhub/handlers/pages.py b/jupyterhub/handlers/pages.py index d2ebf235..3bb7b63a 100644 --- a/jupyterhub/handlers/pages.py +++ b/jupyterhub/handlers/pages.py @@ -619,13 +619,13 @@ class Pagination(BaseHandler): ) def __init__(self, *args, **kwargs): - """Detail parameters remark. - **url**: current request url - **page**: current page - **per_page**: how many records displayed on one page. By default 100 - **total**: total records for pagination - **display_msg**: text for pagation information - **record_name**: record name showed in pagination information + """Potential parameters. + **url**: URL in request + **page**: current page in use + **per_page**: number of records to display in the page. By default 100 + **total**: total records considered while paginating + **display_msg**: informative text for pagination + **record_name**: name of the record, showed in pagination info """ self.page = kwargs.get(self._page_name, 1)