@@ -14,8 +14,8 @@ def get_wrapper_class(full_path):
}.get(get_item_type(full_path), base_view)
-def get_wrapper_instance(full_path, request):
- return get_wrapper_class(full_path)(request, full_path)
+def get_wrapper_instance(full_path, request, is_nxt_prv_item=False):
+ return get_wrapper_class(full_path)(request, full_path, is_nxt_prv_item)
class base_view(base_userview):