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

I want to inline `MyInlineModel` (which has a required `FileField`): ```python class MyInline(SortableInlineAdminMixin, admin.TabularInline): model = MyInlineModel extra = 3 ``` I do this, and I open one of the...

There is no option (that I am aware of) to specify which manager django-admin-sortable2 should use. When I have custom Manager for `objects` which hides some objects and Django Admin...

Python 3.4.3, Django 1.9.8 I've encountered the problem using storages.backends.s3boto3.S3Boto3Storage but you can reproduce it locally: ```python # local default settings STATICFILES_LOCATION = 'stat' STATIC_URL = "https://%s/%s/" % ('my-default-local-site', STATICFILES_LOCATION)...

Hi, I am trying to modify the icon for dragging, but my changes seem not to be affecting the outcome. ![image](https://cloud.githubusercontent.com/assets/5254663/23805640/07458d96-05bf-11e7-9bf2-2eb3995aeae0.png) I have modified the sortable.css: ``` #result_list div.drag {...

When I drag I got this error. response = receiver(signal=self, sender=sender, **named) TypeError: fallback_pre_save() takes exactly 5 arguments (3 given) ``` class MyModel(models.Model): class Meta: ordering = ('order', ) image...

Django 1.10 Python 3.5.2 Funny little bug here. Whenever I sort these two models in the admin site, their columns slightly expand horizontally. This continues as long as I sort...

From the [docs](https://docs.djangoproject.com/en/1.10/ref/models/options/#ordering): > To order by pub_date descending, then by author ascending, use this: > `ordering = ['-pub_date', 'author']` So for `ordering = ('group', 'order')` I would expect items...

With inheritance, e.g. Writing, Event, etc all inheriting from Content. Creating Writing doesn't trigger (or implement) the admin mixin applied to the Content model. They add with the default value...

Brand new, minimal django project. On admin pages for parent polymorphic model with sortable admin mixin gives error: ``` Environment: Request Method: GET Request URL: http://localhost:8004/admin/django_gists/parent/ Django Version: 4.0 Python...

enhancement