Added sortable model that will not be registered as an inline, but will have a non-sortable parent.
parent
4da0deb503
commit
651064d3fb
|
|
@ -130,3 +130,11 @@ class SortableCategoryWidget(SimpleModel, Sortable):
|
||||||
verbose_name_plural = 'Sortable Category Widgets'
|
verbose_name_plural = 'Sortable Category Widgets'
|
||||||
|
|
||||||
non_sortable_category = SortableForeignKey(NonSortableCategory)
|
non_sortable_category = SortableForeignKey(NonSortableCategory)
|
||||||
|
|
||||||
|
|
||||||
|
class SortableNonInlineCategory(SimpleModel, Sortable):
|
||||||
|
class Meta(Sortable.Meta):
|
||||||
|
verbose_name = 'Sortable Category Widget'
|
||||||
|
verbose_name_plural = 'Sortable Category Widgets'
|
||||||
|
|
||||||
|
non_sortable_category = SortableForeignKey(NonSortableCategory)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue