raise RuntimeError(
"You called this URL via %(method)s, but the URL doesn't end "
"in a slash and you have APPEND_SLASH set. Django can't "
"redirect to the slash URL while maintaining %(method)s data. "
"Change your form to point to %(url)s (note the trailing "
"slash), or set APPEND_SLASH=False in your Django settings." % {
'method': request.method,
'url': request.get_host() + new_path,
}
)
В чем смысл?
ты стучишься на несуществующий урл (без слеша, хотя в настройках стоит APPEND_SLASH), и джанго не может отредиректить твой POST/PUT/PATCH-запрос на урл со слешем (в отличие от GET), поэтому выводит ошибку
Обсуждают сегодня