* status: new => closed
* resolution: => wontfix
* stage: Accepted => Unreviewed
Comment:
IMO we shouldn't implicitly set `can_order` when `order_with_respect_to`
is `True`. We don't explicitly set this parameter anywhere else, and it
will not be used by Admin itself. Described usage is quite niche and can
be easily achieved by overriding `get_formset()`, e.g.
{{{
class MyInline(TabularInline):
def get_formset(self, request, obj=None, **kwargs):
kwargs['can_order'] = True
return super().get_formset(request, obj, **kwargs)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/9338#comment:7>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.