これを行うのに役立つ HttpResponse メソッドはどれですか? いくつかのビューにフォーム検証コードがあります:
if request.method == 'POST'
form = SomeForm(request.POST)
if form.is_valid():
form.save()
else:
return HttpResponseRedirect('back.to.this.view')
# I want to redirect to the same form page with a small error message
#below the form saying "This is an empty form"
そのメッセージをページに追加するにはどうすればよいですか?
Django と Web 開発は初めてです