You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from djangosphinx.admin import SphinxModelAdmin
class MyAdmin(SphinxModelAdmin):
index = 'my_index_name' # defaults to Model._meta.db_table
weights = {'field': 100}
As result I got error global name 'Paginator' is not defined, fixed it, then another one - 'list' object has no attribute 'ordered'
Don't know what to do with this.
P.S. Django 1.3 if it matters.
The text was updated successfully, but these errors were encountered:
Did as Docs tell:
As result I got error
global name 'Paginator' is not defined
, fixed it, then another one -'list' object has no attribute 'ordered'
Don't know what to do with this.
P.S. Django 1.3 if it matters.
The text was updated successfully, but these errors were encountered: