Allow explicit page suffix. 2.2.7
authorRadek Czajka <rczajka@rczajka.pl>
Thu, 19 Oct 2023 11:34:43 +0000 (13:34 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Thu, 19 Oct 2023 11:34:43 +0000 (13:34 +0200)
fnp_django_pagination/__init__.py
fnp_django_pagination/templatetags/pagination_tags.py

index 1e68b19..be5cf9a 100644 (file)
@@ -34,4 +34,4 @@ tools throughout a django application.
 """
 
 
-__version__ = (2, 2, 6, "final", 0)
+__version__ = (2, 2, 7, "final", 0)
index 015e19c..3d6a973 100644 (file)
@@ -142,7 +142,9 @@ class AutoPaginateNode(Node):
         if self.multiple_paginations and 'multiple_paginations' not in context:
             context['multiple_paginations'] = True
 
-        if context.get('multiple_paginations') or getattr(context, "paginator", None):
+        if context.get('page_suffix'):
+            page_suffix = context['page_suffix']
+        elif context.get('multiple_paginations') or getattr(context, "paginator", None):
             page_suffix = '_%s' % self.queryset_var
         else:
             page_suffix = ''