diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-03-24 11:42:34 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-03-24 11:42:34 +0000 |
| commit | f55aba59d0bc0579e2d5ac4c7d1882496878876b (patch) | |
| tree | 19a70ffb25e7d40f95e95bc1a18fdb78bd5a786c /docs | |
| parent | c4eb2883bc4226ae7e20a2f5f0420fb98517ec64 (diff) | |
Fixed #10437 -- Corrected typo in Widget media example. Thanks to Manuel Saelices.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10149 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/forms/media.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt index 12181fcf06..287d4c6931 100644 --- a/docs/topics/forms/media.txt +++ b/docs/topics/forms/media.txt @@ -152,7 +152,7 @@ The FancyCalendar widget inherits all the media from it's parent widget. If you don't want media to be inherited in this way, add an ``extend=False`` declaration to the media declaration:: - class FancyCalendar(Calendar): + class FancyCalendarWidget(CalendarWidget): class Media: extend = False css = { |
