django-admin-sortable2
django-admin-sortable2 copied to clipboard
Generic drag-and-drop ordering for objects in the Django admin interface
Python: 3.11 Django: 5.0.4 In admin change list, "move_to_exact_page", "move_to_back_page", "move_to_forward_page" if we select any of this action, new input field renders which accepts number. But if we don't give...
Hi I have 2 bugs with SortableTabularInline. Bug 1: The handle bar is to small, so the text in it is not readable.  I was able to fix that...
I seems to me, that v2.2.3 -> v2.2.4 introduces a bug: Adding a new entry to a existing object will add it not always as a new **last** entry... Sometimes...
Order field is visible when: ```python @admin.register(BlockDiagramCategory) class BlockDiagramCategoryAdmin(SortableAdminMixin, TabbedTranslationAdmin, admin.ModelAdmin): list_display = ('name',) ``` Order field is hidden (as it should be) when: ```python @admin.register(BlockDiagramCategory) class BlockDiagramCategoryAdmin(SortableAdminMixin, admin.ModelAdmin): list_display...