I installed an app called Django-notification, which uses Django-pagination. However, it can’t find the Django_pagination template tags!
Exception Type: TemplateSyntaxError at /notifications
Exception Value: 'pagination_tags' is not a valid tag library: Template library pagination_tags not found, tried django.templatetags.pagination_tags,django.contrib.admin.templatetags.pagination_tags,django.contrib.humanize.templatetags.pagination_tags,pinax.templatetags.templatetags.pagination_tags
Why? I installed Django-pagination already. It’s in my site-packages: django_pagination-1.0.7-py2.6.egg
Next, I put “pagination” in my INSTALLED_APPS.
I even imorted pagination in my views.py. Although I doubt that’ll make a difference.
Just to make sure, have you called
{% load pagination_tags %}in your template?From django’s documentation: