1👍
The docs of endless pagination are not updated. TEMPLATE_CONTEXT_PROCESSORS
was deprecated as of Django 1.8 and removed in 1.10. Please refer to upgrade https://docs.djangoproject.com/en/1.10/ref/templates/upgrading/, it shows where to place context processors.
1👍
Those instructions are written for Django 1.7 or earlier.
They have not been updated for the new TEMPLATES
setting in Django 1.8, and will not work in Django 1.10+.
For this particular part of the instructions, removing those lines from your settings.py
should be enough, because the request
template context processor is enabled by default in Django 1.8+.
However, it looks as if django-endless-pagination is no longer supported so you might have other problems using it with recent versions of Django. You could try this fork instead.
- [Answered ]-How to calculate the sum of a property
- [Answered ]-How to separate a database from a Django web-app when going live?
- [Answered ]-Using a class as a part of another class in django models
- [Answered ]-Django not showing updated data from database