Merge pull request #719 from JonLoy/ticket_19808

Fixed #19808 -- Typo in example
This commit is contained in:
Aymeric Augustin 2013-02-12 06:24:22 -08:00
commit c4841b3de4
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ The ``max_num`` parameter to ``formset_factory`` gives you the ability to
limit the maximum number of empty forms the formset will display::
>>> ArticleFormSet = formset_factory(ArticleForm, extra=2, max_num=1)
>>> formset = ArticleFormset()
>>> formset = ArticleFormSet()
>>> for form in formset:
... print(form.as_table())
<tr><th><label for="id_form-0-title">Title:</label></th><td><input type="text" name="form-0-title" id="id_form-0-title" /></td></tr>