Commit 642ba981 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

[1.2.X] Fixed #14897 -- fixed some synax highlighting in the formset...

[1.2.X] Fixed #14897 -- fixed some synax highlighting in the formset documentation.  Thanks to marcusf for the patch.  Backport of [14912].

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14913 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bd4f4b8a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -376,6 +376,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})
@@ -425,6 +426,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')