diff options
| author | James Bennett <ubernostrum@gmail.com> | 2008-04-10 04:05:37 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2008-04-10 04:05:37 +0000 |
| commit | aad5e791ea424ed72f03cb6ba1bb12fc1ab9f54c (patch) | |
| tree | 36fe77649bbaeaadc5ec6efa6480cff1489fd10f | |
| parent | bd3a1c006775c86be1472dac0b50d5bdcc9591ec (diff) | |
Fixed #6982; added an import statement to example in docs/modelforms.txt for the ModelForm class
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7411 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/modelforms.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/modelforms.txt b/docs/modelforms.txt index 554aeb7ea0..a76d797527 100644 --- a/docs/modelforms.txt +++ b/docs/modelforms.txt @@ -121,6 +121,7 @@ A full example Consider this set of models:: from django.db import models + from django.newforms import ModelForm TITLE_CHOICES = ( ('MR', 'Mr.'), |
