Changes between Initial Version and Version 1 of Ticket #20267, comment 5


Ignore:
Timestamp:
Dec 2, 2013, 4:04:34 PM (10 years ago)
Author:
clime

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20267, comment 5

    initial v1  
    11Just a note. This is what I do atm:
    22
     3
     4{{{
    35class WebFilter(forms.Form):
    46    def clean(self):
     
    1517        return cleaned_data
    1618
     19}}}
     20
    1721This is a class that a form needs to inherit from if it wants to have filter-like behaviour (WebMeta is a special class for defining defaults). It wouldn't be needed with with default attribute on fields.
Back to Top