mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-04-19 14:21:06 +00:00
calling the correct queryset/get_queryset for VERSION
This commit is contained in:
parent
cf1a2103dd
commit
c7f2d63ec9
1 changed files with 5 additions and 1 deletions
|
|
@ -278,7 +278,11 @@ class SortableInlineBase(SortableAdminBase, InlineModelAdmin):
|
|||
' and SortableStackedInline must inherit from Sortable')
|
||||
|
||||
def get_queryset(self, request):
|
||||
qs = super(SortableInlineBase, self).get_queryset(request)
|
||||
if VERSION < (1, 6):
|
||||
qs = super(SortableInlineBase, self).queryset(request)
|
||||
else:
|
||||
qs = super(SortableInlineBase, self).get_queryset(request)
|
||||
|
||||
if get_is_sortable(qs):
|
||||
self.model.is_sortable = True
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue