When posting an article using summernote in django on PythonAnywhere, An error occurred that the input field for summernote is not displayed on the admin page.
I introduce how to solve it.
As a conclusion, it will be solved by installing and setting WhiteNoise plugin.
[Whitenoise] Install whitenoise with PythonAnywhere.
Please open PythonAnywhere console and install WhiteNoise plugin.
pip install whitenoise
Just add the following to MIDDLEWARE in settings.py.
MIDDLEWARE = [ "whitenoise.middleware.WhiteNoiseMiddleware", ]
Please try it.