[Fixed]-Using forms with the Django outputs the token

1👍

You are looping over all the elements in the POST array in this snippet of code

for key, value in request.POST.items():
    response += '%s %s\n' % (key, value)

I believe, if i understand your question, that what you are after is simply request.POST.get('eee')

Leave a comment