diff --git a/docs/newforms.txt b/docs/newforms.txt index 810982d7884..e27514cdba8 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -884,12 +884,11 @@ classes::
  • Instrument:
  • Haircut type:
  • - Prefixes for forms ------------------ You can put several Django forms inside one ``
    `` tag. To give each -``Form`` its own namespace you need to use the ``prefix`` keyword argument:: +``Form`` its own namespace, use the ``prefix`` keyword argument:: >>> mother = PersonForm(prefix="mother") >>> father = PersonForm(prefix="father") @@ -900,7 +899,6 @@ You can put several Django forms inside one ```` tag. To give each
  • - Fields ======