django-object-actions
django-object-actions copied to clipboard
A Django app for easily adding object tools in the Django admin
Bumps [django](https://github.com/django/django) from 3.2.12 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...
I was recently overriding `get_change_actions()` as instructed in the documentation, however I was having problems due to a model having a CharField for the primary key, and specifically values that...
Perhaps it's something that only irks me, but I find that this syntax quickly becomes readable after the function goes beyond a few lines: ```python def publish_this(self, request, obj): publish_obj(obj)...
Has anyone ever tried to use django object actions together with django import export? I have a admin class that I would like to use both of these together: ```...
For some actions it would be nice to have a way of requiring the user answer a [confirm dialog](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm). Would a PR for something like this be accepted?
Have there been any thoughts about converting actions to POST requests rather than GET? I found https://github.com/texastribune/django-object-actions/pull/2but it appears that's mostly on the serving side and not where the buttons...
Hi, let me start by expressing my gratitude for your efforts into this nice project ! When actions are related to a certain field, it makes sense to have their...
The queryset passed to changelist_actions includes **all** objects, even if the admin view has an active filter/search. Is there a way to receive a queryset identical to the filtered list...
For me "Dupe name is fine. https://code.djangoproject.com/ticket/14259" is not working. When I click on the button/link from change list in admin function does not run
Hi! How to make library friends with mypy? For example if I use code from readme ``` class MyModelAdmin(DjangoObjectActions, admin.ModelAdmin): def toolfunc(self, request: HttpRequest, obj: MyModel) -> None: pass toolfunc.label...