I am trying to pass a function defined in my views.py, by specifying a specific setting in settings.py, to a third-party django app used by my project like the following:
ENDLESS_PAGINATION_PAGE_LIST_CALLABLE = myapp.views.get_pagination_pages
and I got the error NameError: name 'lend_borrow' is not defined
Then I tried
import myapp
ENDLESS_PAGINATION_PAGE_LIST_CALLABLE = myapp.views.get_pagination_pages
and another error AttributeError: 'module' object has no attribute 'views'
I also attempted with passing the path to the callable:
ENDLESS_PAGINATION_PAGE_LIST_CALLABLE = 'myapp.views.get_pagination_pages'
But the third-party app doesn't seem to like it. I got Caught TypeError while rendering: 'str' object is not callable
The third-party app being used here is django endless pagination. It's included in INSTALLED_APPS.
How can I pass the callable defined in my app to the third-party app via settings.py?