Guest User

Untitled

a guest
Jan 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. class ListForm(forms.Form):
  2. def __init__(self, *args, **kwargs):
  3. super(ListForm, self).__init__(*args, **kwargs)
  4. self.__setattr__('TESTATTR', property(forms.BooleanField(required=False)))
  5. # or
  6. self.__setattr__('TESTATTR', forms.BooleanField(required=False))
Add Comment
Please, Sign In to add comment