Reputation: 2187
Very straightforward question. There used to be a checkbox in the header of the Django admin site, but after upgrading from Django 1.5 to 1.9 it is no longer there.
Also, I can no longer shift-select rows.
I cannot for the life of me find any configuration options around this. Hoping it is something obvious.
Upvotes: 1
Views: 508
Reputation: 308999
The checkboxes should still be there in Django 1.9. The design for the Django admin was updated in 1.9. Your screenshot still looks like the old style, so it looks like you haven't updated the static files.
If you are in production, make sure that you have run collectstatic
since upgrading.
python ./manage.py collectstatic
Upvotes: 2