[Django]-Dajngo-admin-sortable2 doesn't sort order of SortableAdminMixin

4👍

Maybe a little to late, but:

If there is already some model instance persisted in your db when you add the adminsortable2 field in your model, the ordering will not works, you need to build the order a first time with:

python manage.py reorder your_app.YourModel

Source: https://django-admin-sortable2.readthedocs.io/en/latest/usage.html#initial-data

Hoping this can help.

👤Slot

Leave a comment