django-admin-sortable2 icon indicating copy to clipboard operation
django-admin-sortable2 copied to clipboard

Generic drag-and-drop ordering for objects in the Django admin interface

Results 64 django-admin-sortable2 issues
Sort by recently updated
recently updated
newest added

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...

bug

Hi I have 2 bugs with SortableTabularInline. Bug 1: The handle bar is to small, so the text in it is not readable. ![Image](https://github.com/user-attachments/assets/07a74aa3-2504-412b-b106-37b998f7da72) 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...