Changes between Initial Version and Version 1 of Ticket #20267, comment 5
- Timestamp:
- Dec 2, 2013, 4:04:34 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20267, comment 5
initial v1 1 1 Just a note. This is what I do atm: 2 2 3 4 {{{ 3 5 class WebFilter(forms.Form): 4 6 def clean(self): … … 15 17 return cleaned_data 16 18 19 }}} 20 17 21 This 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.