Added SortableInlineBase class to do subclass checking.

master
Brandon Taylor 2011-09-03 22:03:40 -05:00
parent 971de8423c
commit 5d10de5ed4
1 changed files with 0 additions and 17 deletions

View File

@ -146,20 +146,3 @@ class SortableTabularInline(SortableInlineBase, TabularInline):
class SortableStackedInline(SortableInlineBase, StackedInline): class SortableStackedInline(SortableInlineBase, StackedInline):
"""Custom template that enables sorting for stacked inlines""" """Custom template that enables sorting for stacked inlines"""
template = 'adminsortable/edit_inline/stacked.html' template = 'adminsortable/edit_inline/stacked.html'
#class SortableTabularInline(TabularInline):
# """Custom template that enables sorting for tabular inlines"""
# def __init__(self, *args, **kwargs):
# super(SortableTabularInline, self).__init__(*args, **kwargs)
#
# if not issubclass(self.model, Sortable):
# raise Warning(u'Models that inherit SortableTabluarInline must inherit from Sortable')
#
# """
# This property is referenced by tabular.html's <h2> to show a message on whether or
# not the inlines are sortable. It is exposed in: inline_admin_formset.opts
# """
# self.is_sortable = self.model.is_sortable()
#
# template = 'adminsortable/edit_inline/tabular.html'