django-inline-actions
django-inline-actions copied to clipboard
django-inline-actions adds actions to each row of the ModelAdmin or InlineModelAdmin.
Bumps [lxml](https://github.com/lxml/lxml) from 4.6.2 to 4.9.1. Changelog Sourced from lxml's changelog. 4.9.1 (2022-07-01) Bugs fixed A crash was resolved when using iterwalk() (or canonicalize()) after parsing certain incorrect input. Note...
Chnage ugettext_lazy to gettext_lazy in `inline_actions/admin.py`.
``` venv/lib/python3.8/site-packages/inline_actions/admin.py", line 10, in from django.utils.translation import ugettext_lazy as _ ImportError: cannot import name 'ugettext_lazy' from 'django.utils.translation ``` caused by RemovedInDjango40Warning: django.utils.translation.ugettext_lazy() is deprecated in favor of django.utils.translation.gettext_lazy().
https://github.com/escaped/django-inline-actions/blob/d02441339a1b5ec3d34c10a29da41157afe9df2c/inline_actions/admin.py#L257 `get_inline_instances` is commonly customized depending on the obj and its (non-) existence (e.g. hiding inline instances when the object is not saved).
## Description I noticed a bug (I think) where the handle action function does not pass through the parent object into the `get_inline_instances` function. Sometimes, a ModelAdmin will display or...
## Description Just a little typo. Fixes #(issue) ## Checklist - [ ] Tests covering the new functionality have been added - [ ] Code builds clean without any errors...
I have a few admin pages i.g. /admin/ ---> for company users (our company) /c-admin --> for customer users /super-admin/ ---> for me (everything is allowwed) so I would like...
Edit any normal field value and press Enter It will run the first django inline action rather than save the form I believe this is due to how `input type...
Basically, when a particular inline action is carried out on a given model's entry, we should 1. suggest to register the inline action inside django admin's history 2. suggest to...
This will be the next major release and includes the following changes: - [ ] Class-based actions - [ ] better support for intermediate forms - [ ] support for...