Changeset 8020 for django/trunk/docs/form_preview.txt
- Timestamp:
- 07/21/08 11:38:54 (6 months ago)
- Files:
-
- django/trunk/docs/form_preview.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/form_preview.txt
r7675 r8020 14 14 ========= 15 15 16 Given a ``django. newforms.Form`` subclass that you define, this application16 Given a ``django.forms.Form`` subclass that you define, this application 17 17 takes care of the following workflow: 18 18 … … 66 66 from myapp.preview import SomeModelFormPreview 67 67 from myapp.models import SomeModel 68 from django import newforms asforms68 from django import forms 69 69 70 70 ...and add the following line to the appropriate model in your URLconf::
