django-object-actions icon indicating copy to clipboard operation
django-object-actions copied to clipboard

A Django app for easily adding object tools in the Django admin

Results 34 django-object-actions issues
Sort by recently updated
recently updated
newest added

With an admin model ``` python class MyModelAdmin(DjangoObjectActions, admin.ModelAdmin): save_as = True change_actions = ('my_action') ``` I'm getting following error when I click `Save as new` button (highlighting line #...

I was updating to 0.6.0 and it broke due to the missing QuerySetIsh class. It might not be an obvious use case, but I am using QuerySetIsh with isinstance to...

enhancement

I think need use `list_display` without template usage. ``` class Admin(DjangoObjectActions, ...): list_display = ( ... , 'object_actions') class DjangoObjectActions(...) def object_actions(self, obj): for x in objectactions: ... return "HTML...

enhancement

Another try at enforcing POST actions. This change is more gradual than #149 - when library user doesn't change default options the behavior is exactly the same as before the...

https://docs.djangoproject.com/en/5.0/releases/5.0/

GET parameters seem to always return empty when attempting to retrieve them from the action view. For example when I add the parameter 'form1' to the url that maps to...

It can be useful when there are several admins on a project.

I can't figure out what the difference is between adding an action via Django's built-in `actions` attribute vs the `changelist_actions` attribute added by `django-object-actions`. They seem to serve the same...