I have started a new project and app in Django 2.2.5 and I use Python 3.7.4 in Pycharm 2019.1.3
I run the django dev server from Pycharm terminal and everything works fine until I use some local signs in the html templates like: "í" after that I get UnicodeDecodeError:
'utf-8' codec can't decode byte 0xed in position 345: invalid continuation byte
In settings.py the Language code is set to local language:
LANGUAGE_CODE = 'sk'
I am lost as to what to do with this. I tried trans and autoescape, setting the encoding at the top of the html file ... but it didn't work. Any ideas?