django-adminactions icon indicating copy to clipboard operation
django-adminactions copied to clipboard

collection of useful django actions to use with ModelAdmin or AdminSite.

Results 24 django-adminactions issues
Sort by recently updated
recently updated
newest added

There are small typos in: - src/adminactions/mass_update.py - src/adminactions/static/adminactions/js/jqplot/plugins/jqplot.barRenderer.js - src/adminactions/static/adminactions/js/jqplot/plugins/jqplot.categoryAxisRenderer.js - src/adminactions/static/adminactions/js/jqplot/plugins/jqplot.pieRenderer.js - tests/conftest.py Fixes: - Should read `currently` rather than `currenty`. - Should read `remove` rather than `removee`....

@saxix thanks for building this repo! I'm trying to debug an issue when I try to merge a couple models with M2M relationships and attempting to create a failing test...

There is an incredibly subtle bug with `create_extra_permissions`. Since [the order of django signal handling](https://stackoverflow.com/questions/10017567/possible-to-change-order-of-django-signals) is entirely arbitrary, sometimes you end up with the signals in this order. ``` (Pdb)...

**Summary** The "Merge selected" action thrown an `AttributeError` exception in all instances. Django version is 2.24. Python version is 3.7.5. **To Reproduce** To reproduce the issue in an application that...

Hi there, I have a very quick question, to which I may have the answer already but I am going to ask anyway: is it possible to use the Mass...

It would be tremendously useful to me if it were possible to use callables defined on the ModelAdmin instead of only on the Model. Below is an example where I...

Looking here https://github.com/saxix/django-adminactions/blob/edbfed7714c9455e92bf8d9407dda37c68aea26a/src/adminactions/mass_update.py#L277 ```python mass_update_exclude = getattr(modeladmin, 'mass_update_exclude', ['pk']) or [] if 'pk' not in mass_update_exclude: mass_update_exclude.append('pk') ``` So mass_update_exclude can't ever be False. Then a couple of lines later:...

The form validation raises error because the form render value of ArrayField into string not list. ex. ```py ['abc', 'bce'] -> "\[\'abc\',\'\bce\'\]" ``` I managed to solve this problem with...

needs-pull-request