при запуске DJANGO в views.py отрабатывает ошибка
view.py
from django.shortcuts import render
def index(request):
return render(request,'index.html')
сама ошибка выглядит так:
Сообщение = 'utf-8' codec can't decode byte 0xcf in position 78: invalid continuation byte
Источник = C:\Users\kiril_000\source\repos\DjangoWebProject2\DjangoWebProject2\app\views.py
Трассировка стека:
File "C:\Users\kiril_000\source\repos\DjangoWebProject2\DjangoWebProject2\app\views.py", line 10, in index (Current frame)
return render(request,'index.html')