admin.AdminSite.add_action()

AdminSite.add_action(action, name=None) [source]

Some actions are best if they’re made available to any object in the admin site – the export action defined above would be a good candidate. You can make an action globally available using AdminSite.add_action(). For example:

1
2
3
from django.contrib import admin
 
admin.site.add_action(export_selected_objects)

This makes the export_selected_objects action globally available as an action named “export_selected_objects”. You can explicitly give the action a name – good if you later want to programmatically remove the action – by passing a second argument to AdminSite.add_action():

1
admin.site.add_action(export_selected_objects, 'export_selected')
doc_Django
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.