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

as I discovered recently in https://github.com/django/django/pull/15835 Django does **NOT** officially support pathlib for template paths. So i suggest to revert the following commit in the meantime: https://github.com/jrief/django-admin-sortable2/commit/7d0b6616e192dae867c3bf4f9cb8496ab610b5ef

Hi @jrief! we at @boxine are now using your new sortable inlines, and it's working great! However, we made a few visual adjustments that we think the core project would...

This was picked up in fuzzing tests against our site running your plugin. The code errors if a non-numeric page number is supplied. This fix means this (admittedly unlikely) eventuality...

This is a fix for the Django admin sortable 2 plugin to work with multiple database setting. after this update, user can set db_tablespace parameter in model meta data to...

admin-sortable2 2.0.4 in my project works fine on localhost. But deployed to a server, the second I touch a drag handle, the console shows this error: And ordering changes are...

I am trying to store a new object in an SortableInlineAdminMixin: ``` from django.contrib import admin @admin.register(MyOtherModel) class MyOtherModelAdmin(admin.ModelAdmin, SortableAdminBase): inlines = [MyInline] class MyInline(SortableInlineAdminMixin, admin.TabularInline): model = MyModel extra...

I am trying to develop an TabularInline admin class which uses the SortableInlineAdminMixin to sort the objects via drag and drop. I also want that, when I create a new...

Using SortableInlineAdminMixin enables dragging on inline admin elements. Elements don't reorder correctly on drag tough. Depending on the part of the 'drag' element that I click, behavior changes. Element starts...

We are maintaining very long lists of items using `admin-sortable2`. Unfortunately, new items are always added to the bottom. However, in our data domain, new items should appear on top...

enhancement

If I click the “add another” button for a stacked inline, the label is not incremented correctly: ![Screenshot 2022-02-28 at 13 38 50](https://user-images.githubusercontent.com/464193/155992662-fc51748f-6e8b-42a9-be58-eee6f5c083c9.png) It looks like django does this by...