From 84ef8097050fef17c7c0f7390cca6e5dfd054632 Mon Sep 17 00:00:00 2001 From: Oliver Zander Date: Tue, 14 Oct 2025 11:16:13 +0200 Subject: [PATCH] do not show internal address default --- input/forms.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/input/forms.py b/input/forms.py index ee44358..ac50446 100755 --- a/input/forms.py +++ b/input/forms.py @@ -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 = ''