Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 26th, 2012  |  syntax: Python  |  size: 0.34 KB  |  hits: 28  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class NewModelForm(forms.ModelForm):
  2.  
  3.    
  4.     def __init__(self, *args, **kwargs):
  5.         super(NewModelForm, self).__init__(*args, error_class=ErrorListNew, **kwargs)
  6.        
  7.  
  8. class NewForm(forms.Form):
  9.  
  10.     def __init__(self, *args, **kwargs):
  11.         super(NewForm, self).__init__(*args, error_class=ErrorListNew, **kwargs)