1
The method you have created in MyClassManager
has the wrong name:
def get_query_set(self):
Which should instead be:
# query_set -> queryset
def get_queryset(self):
0
You are using filter_on_search
on your queryset. Instead, you need to use it in lieu of objects
.
So, you would star by doing
obj_list = klass.filter_on_search
However, looks like you may want to move all of your logic from the view to the manager.
For what it’s worth, there is an awesome package that does exactly what you want in integrating Django with Datatables: https://pypi.python.org/pypi/django-datatables-view
- "Cannot assign / must be an instance" error when creating a model instance from a CSV (ForeignKey related)
- Django- how to serve an image in all templates of django app?
- Django-autocomplete-light: Forward works fine in admin but returns None when used in template
Source:stackexchange.com