Ошибка в Django UnicodeDecodeError

в django шаблоне возникает такая ошибка

UnicodeDecodeError at /posts/pochemy_arnold_shvarcnegger_takoi_silnii/ 'utf-8' codec can't decode byte 0xcd in position 402: invalid continuation byte The string that could not be encoded/decoded was: ������ код шаблона:

<!DOCTYPE html>
{% load static %}
<html>
<head>
    <meta charset="utf-8" />
</head>
<body>

</body>
    <div class="centr">
        <h1>{{post.title}}</h1>
        <p>{{post.text}}</p>
        <span class="day">{{post.pub_date}}</span><br />
        <a href={{post.get_absolute_url}}><img class="like" height="20" src="{% static " myblog /images/like.jpg" %}" alt="h"></a>
        <h2> Напишите свой отзыв </h2>
        <form ction="#" method="post">
            <label>Имя:</label>
            <input placeholder="Ваше имя" type="text" /><br />
            <label>Email:</label>
            <input placeholder="Ваш Email" type="text" /><br />
            <label>Отзыв:</label>
            <textarea name="comment" cols="30" rows="10"></textarea><br />
        </form>
    </div>
</body>
</html>

Ответы (0 шт):