django.contrib.admin.helpers ActionForm Example Code

ActionForm is a class within the django.contrib.admin.helpers module of the Django project. It is not typically used when creating applications but is sometimes used by libraries that want to extend the actions available within the Django Admin.

Example 1 from django-import-export

django-import-export (documentation and PyPI page) is a Django code library for importing and exporting data from the Django Admin. The tool supports many export and import formats such as CSV, JSON and YAML. django-import-export is open source under the BSD 2-Clause "Simplified" License.

django-import-export / import_export / forms.py