mirror of https://github.com/django/django.git
Merge pull request #719 from JonLoy/ticket_19808
Fixed #19808 -- Typo in example
This commit is contained in:
commit
c4841b3de4
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue