I write this code block to my admin.py
class Media:
js = [
settings.STATIC_URL+'grappelli/tinymce/jscripts/tiny_mce/tiny_mce.js',
settings.STATIC_URL+'grappelli/tinymce_setup/tinymce_setup.js',
]
But I dont have grappelli folder under static folder
my STATIC_URL ="/static/
How works tinymce ?
When I put grappelli folder under the static folder and modified the tinymce it does not see my modification
Why could it be?