diff --git a/en/django_forms/README.md b/en/django_forms/README.md index a669bea5136..12017a35919 100644 --- a/en/django_forms/README.md +++ b/en/django_forms/README.md @@ -189,7 +189,7 @@ def post_new(request): return render(request, 'blog/post_edit.html', {'form': form}) ``` -When we submit the form, we are brought back to the same view, but this time we have some more data in `request`, more specifically in `request.POST` (the naming has nothing to do with a blog "post"; it's to do with the fact that we're "posting" data). Remember how in the HTML file, our `