I'm using grappelli and I have two files in it I need to modify:
admin/js/SelectBox.js
admin/js/SelectFilter2.js
I thought it would be a good idea to put it into my app static directory:
my_app/static/admin/js/SelectBox.js
my_app/static/admin/js/SelectFilter2.js
But whenever I try ./manage.py collectstatic
files from my_app are overrided by original files from grappelli, however I need it vice versa.
I need just to add several strings in this files into existing functions, so I can't handle it within a new js files and include into Media class ( from my point of view ).
Is there any way to override grappelli files?