summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-12-27 05:14:34 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-12-27 05:14:34 +0000
commit99723ac65a5471a619fc1a668391ee818cc1437d (patch)
tree0cecebf1dee9bbff422c2a08fd688402af04e650 /docs
parent252606c711c644d427edf1a5a079d1029f1c6621 (diff)
Negligible change to docs/newforms.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4245 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/newforms.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt
index c4986eb45e..ec721effc4 100644
--- a/docs/newforms.txt
+++ b/docs/newforms.txt
@@ -22,7 +22,7 @@ release, our plan is to do the following:
from django import oldforms as forms # new
* At an undecided future date, we will move the current ``django.newforms``
- to ``django.forms``. This will be a backwards-incompatible change, and
+ to ``django.forms``. This will be a backwards-incompatible change, and
anybody who is still using the old version of ``django.forms`` at that
time will need to change their import statements, as described in the
previous bullet.
@@ -282,6 +282,13 @@ example, in the ``ContactForm`` example, the fields are defined in the order
``subject``, ``message``, ``sender``, ``cc_myself``. To reorder the HTML
output, just change the order in which those fields are listed in the class.
+Using forms to validate data
+----------------------------
+
+In addition to HTML form display, a ``Form`` class is responsible for
+validating data.
+
+
More coming soon
================
@@ -290,9 +297,6 @@ http://code.djangoproject.com/browser/django/trunk/tests/regressiontests/forms/t
-- the unit tests for ``django.newforms``. This can give you a good idea of
what's possible.
-Using forms to validate data
-----------------------------
-
Using forms with templates
==========================