Ticket #10437: forms_media_typo_fix_r10004.diff

File forms_media_typo_fix_r10004.diff, 497 bytes (added by Manuel Saelices, 15 years ago)
  • docs/topics/forms/media.txt

     
    152152you don't want media to be inherited in this way, add an ``extend=False``
    153153declaration to the media declaration::
    154154
    155     class FancyCalendar(Calendar):
     155    class FancyCalendarWidget(CalendarWidget):
    156156        class Media:
    157157            extend = False
    158158            css = {
Back to Top