forked from beba/foerderbarometer
do not show internal address default
This commit is contained in:
parent
01267e6939
commit
84ef809705
|
|
@ -299,3 +299,8 @@ class ListForm(BaseApplicationForm, CommonOrderMixin):
|
|||
model = List
|
||||
fields = ['domain', 'address', 'terms_accepted']
|
||||
exclude = ['intern_notes', 'survey_mail_send','mail_state']
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
self.fields['address'].initial = ''
|
||||
|
|
|
|||
Loading…
Reference in New Issue