When I go to main site page, requests for tinymce are:
"GET /media/js/tiny_mce/textareas.js HTTP/1.1" 200 2007
"GET /media/js/tiny_mce/tiny_mce.js HTTP/1.1" 200 207773
because I use MEDIA_URL for tinymce stuff. But when I go to /admin pages requests are:
"GET /static/js/tiny_mce/tiny_mce.js HTTP/1.1" 304 0
"GET /static/js/tiny_mce/textareas.js HTTP/1.1" 200 2007
Why? And where to correct this?
Fragment of \venv\Lib\site-packages\tinymce\settings.py:
AFAIR ‘django.contrib.staticfiles’ is included in INSTALLED_APPS by default. Therefore tinymce should be located in static dir. Instructions about putting tinymce in media directory misled me.