I am new to django/python. I am trying out Pagination on scroll using django-endless-pagination and found the below error: 'BlockNode' object has no attribute 'context'
entry_index.html
<h2>Logs:</h2> {% include page_template %} {% block js %} {{ block.super }} <script src="http://code.jquery.com/jquery-latest.js"></script> <script src="{{ STATIC_URL }}endless_pagination/js/endless-pagination.js"></script> <script> $.endlessPaginate({ paginateOnScroll: true, paginateOnScrollChunkSize: 5 }); </script> {% endblock %}
entry_index_page.html
{% for i in list %} {{ i }} {% endfor %}
I am following Django Endless Pagination tutorial for this.
Any help would be greatly appreciated.