1

Show_all button is displayed on the bottom of the page in django admin.

How can I display the Show_all button on the top of the page?

Currently Show_all is displayed at the bottem of the page.

Stryker
  • 5,732
  • 1
  • 57
  • 70

1 Answers1

1

There is no option or attribute to show this link at top.

The best approach will be to override the change_list template of admin, and add a link to show all. There is a stackoverflow post for this task

Link need the parameter all= like :
http://localhost:8000/admin/app/model/?all=

Community
  • 1
  • 1
Wilfried
  • 1,623
  • 1
  • 12
  • 19