From 10edce12fc05fb31610f1ee4a372cd7c0b388533 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 13 Dec 2006 06:48:57 +0000 Subject: [PATCH] Updated docs/newforms.txt to reflect [4197]. Refs #3112 git-svn-id: http://code.djangoproject.com/svn/django/trunk@4198 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/newforms.txt | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/newforms.txt b/docs/newforms.txt index ee54566184..d54ea19d6e 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -100,10 +100,10 @@ it and ``print`` it:: >>> f = ContactForm() >>> print f - - - - + + + + This default output is a two-column HTML table, with a ```` for each field. Notice the following: @@ -176,12 +176,12 @@ calls its ``as_table()`` method behind the scenes:: >>> f = ContactForm() >>> f.as_table() - u'\n\n\n' + u'\n\n\n' >>> print f.as_table() - - - - + + + + Configuring HTML ``