Kaydet (Commit) 19a810b1 authored tarafından Claude Paroz's avatar Claude Paroz

Fixed #14917 -- Hinted that view should redirect after form post success

üst e0fce870
...@@ -877,7 +877,8 @@ of a model. Here's how you can do that:: ...@@ -877,7 +877,8 @@ of a model. Here's how you can do that::
formset = BookInlineFormSet(request.POST, request.FILES, instance=author) formset = BookInlineFormSet(request.POST, request.FILES, instance=author)
if formset.is_valid(): if formset.is_valid():
formset.save() formset.save()
# Do something. # Do something. Should generally end with a redirect. For example:
return HttpResponseRedirect(author.get_absolute_url())
else: else:
formset = BookInlineFormSet(instance=author) formset = BookInlineFormSet(instance=author)
return render_to_response("manage_books.html", { return render_to_response("manage_books.html", {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment