Django

Code

Show
Ignore:
Timestamp:
07/21/08 11:38:54 (6 months ago)
Author:
gwilson
Message:

Refs #7864 -- Updates to documentation for the oldforms/newforms switch.

  • Moved forms.txt to oldforms.txt
  • Moved newforms.txt to forms.txt
  • Updated links and most references to "newforms" (there are a few sections that need a more significant rewrite).
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/form_preview.txt

    r7675 r8020  
    1414========= 
    1515 
    16 Given a ``django.newforms.Form`` subclass that you define, this application 
     16Given a ``django.forms.Form`` subclass that you define, this application 
    1717takes care of the following workflow: 
    1818 
     
    6666           from myapp.preview import SomeModelFormPreview 
    6767           from myapp.models import SomeModel 
    68            from django import newforms as forms 
     68           from django import forms 
    6969 
    7070       ...and add the following line to the appropriate model in your URLconf::