Changeset 8029
- Timestamp:
- 07/21/08 12:13:41 (3 months ago)
- Files:
-
- django/trunk/docs/forms.txt (modified) (1 diff)
- django/trunk/docs/oldforms.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/forms.txt
r8025 r8029 2471 2471 2472 2472 The above ends up calling the ``as_table`` method on the formset class. 2473 2474 More coming soon2475 ================2476 2477 That's all the documentation for now. For more, see the file2478 http://code.djangoproject.com/browser/django/trunk/tests/regressiontests/forms2479 -- the unit tests for ``django.forms``. This can give you a good idea of2480 what's possible. (Each submodule there contains separate tests.)2481 2482 If you're really itching to learn and use this library, please be patient.2483 We're working hard on finishing both the code and documentation.django/trunk/docs/oldforms.txt
r8024 r8029 9 9 replaced in the next Django release. If you're starting from scratch, we 10 10 strongly encourage you not to waste your time learning this. Instead, learn and 11 use the django.forms system, which we have begun to document in the 12 `forms documentation`_. 13 14 .. _forms documentation: ../forms/ 11 use the new `forms library`_. 12 13 .. _forms library: ../forms/ 15 14 16 15 Introduction
