Jak używać metody PUT w Django
from django.http import QueryDict
put = QueryDict(request.body)
description = put.get('description')
Xenophobic Xenomorph
from django.http import QueryDict
put = QueryDict(request.body)
description = put.get('description')