If you have access to your settings.py file, you can change the settings to indicate that your database uses "latin1".
The following is an example configuration of "DATABASES" in the settings.py file.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'test_db',
'USER': 'root',
'PASSWORD': '',
'HOST': '',
'PORT': '3306',
'OPTIONS': {
'charset': 'latin1',
'use_unicode': True, },
},
}
I had a similar problem earlier, see the link here Django database encoding problem