From e0e084e01775aca946d83d1eefa6e25aaf3ee42e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 30 Nov 2007 05:16:51 +0000 Subject: [PATCH] Edited docs/newforms.txt changes from [6532] git-svn-id: http://code.djangoproject.com/svn/django/trunk@6769 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/newforms.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 ======