summaryrefslogtreecommitdiffstats
path: root/utils/pagination.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/pagination.py')
-rw-r--r--utils/pagination.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/utils/pagination.py b/utils/pagination.py
new file mode 100644
index 0000000..8d2cb60
--- /dev/null
+++ b/utils/pagination.py
@@ -0,0 +1,18 @@
+from flask import url_for, request
+from app import app
+
+
+def url_for_other_page(page):
+ args = request.view_args.copy()
+ args['page'] = page
+ return url_for(request.endpoint, **args)
+app.jinja_env.globals['url_for_other_page'] = url_for_other_page
+
+
+# @app.context_processor
+# def register_method():
+# def url_for_other_page(page):
+# args = request.view_args.copy()
+# args['page'] = page
+# return url_for(request.endpoint, **args)
+# return dict(url_for_other_page=url_for_other_page)