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

Whenever this `ModelAdmin` mixin is enabled (depending on the order) either the action buttons for this project or the buttons for [django-reversion](https://github.com/etianen/django-reversion) don't show up. I think creating a custom...

https://docs.djangoproject.com/en/dev/releases/2.1/ > The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. https://github.com/django/django/blob/master/django/contrib/admin/templates/admin/change_form_object_tools.html

Is there a way to redirect an user after he clicked on an action and preserve applied filters? Any help would be appreciated :)

This is a common use case: Creating a button that's just a link somewhere. Django's "View on site" does this with a redirect. That's the way this documents how to...

enhancement
to do

Currently if an admin view overrides `get_object_actions()` and returns an action not contained in the `objectactions` view's attr, then invoking the action from the admin interface results in a 404....

bug
to do

I do not like the coveralls interface. codecov promises a better ux. I'm not even sure coveralls is working. https://codecov.io/

enhancement
to do

I could have sworn I had a naming things issue before. I'm not that happy with some of the name choices I made. - [ ] `INSTALLED_APPS` name: `django_object_actions` stays...

help wanted
to do

I think it's worth mentioning that for old-style classes the order in which we declare the multiple inheritance on the `ModelAdmin` is important. More specifically, writing ```python class MyModelAdmin(admin.ModelAdmin, DjangoObjectActions):...

My use case requires that I modify one of the fields in the admin form, and then invoke an action. Basically, I need a function signature like that of ModelAdmin.save_model,...

Thanks for creating this useful package. I followed the setup process however the actions are not showing in admin. I'm using Python 3.5, Django 1.9.2 and Flat Admin Theme. This...