Trying to use sphinx search in django admin. Installed django-sphinx .
As Docs reported:
from djangosphinx.admin import SphinxModelAdmin class MyAdmin(SphinxModelAdmin): index = 'my_index_name'
As a result, I got a global name 'Paginator' is not defined error global name 'Paginator' is not defined , fixed it, then another 'list' object has no attribute 'ordered'
I don’t know what to do with it.
PS Django 1.3, if that matters.
source share