cwj
cwj

Reputation: 2583

Extending the admin panel in Django

I have several objects with some functions that I would like to be able to run via the admin panel. So far, I've not found a way to add them as actions to the admin interface.

Is there a way to do it?

Upvotes: 0

Views: 422

Answers (1)

thornomad
thornomad

Reputation: 6777

Do you intend to perform these actions on a selection of items ? If so, have you seen the django admin actions docs ? I use them to perform custom actions quite swimmingly.

Upvotes: 2

Related Questions