Rjak
Rjak

Reputation: 2187

The "select all" header checkbox that I used in Django 1.5 is missing in Django 1.9

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.

Where is my select all checkbox?

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

Answers (1)

Alasdair
Alasdair

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

Related Questions