Fixed #14897 -- fixed some synax highlighting in the formset documentation. Thanks to marcusf for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2010-12-13 19:37:18 +00:00
parent 6ec348fb41
commit 68548c3eff
1 changed files with 2 additions and 0 deletions

View File

@ -381,6 +381,7 @@ management form inside the template. Let's look at a sample view:
formset = ArticleFormSet(request.POST, request.FILES)
if formset.is_valid():
# do something with the formset.cleaned_data
pass
else:
formset = ArticleFormSet()
return render_to_response('manage_articles.html', {'formset': formset})
@ -430,6 +431,7 @@ a look at how this might be accomplished:
book_formset = BookFormSet(request.POST, request.FILES, prefix='books')
if article_formset.is_valid() and book_formset.is_valid():
# do something with the cleaned_data on the formsets.
pass
else:
article_formset = ArticleFormSet(prefix='articles')
book_formset = BookFormSet(prefix='books')