Adding a button to Wagtail Dashboard

Viewed 2838

Is it possible to add a additional button(buttons) on the top panel as shown in the picture?

enter image description here

I did't find anything in Google and here.

2 Answers

Watch out, if you are listing Pages you will need to subclass from PageAdminURLHelper, not from AdminURLHelper (FilterableAdminURLHelper doesn't seem to be a standard implementation).
Otherwise, you will have some strange redirections taking place.

Related