From 2ed7fdaad112ac1bd8e8293afe2302f32106374e Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Fri, 10 Nov 2017 10:39:49 +0100 Subject: [PATCH] Update texts --- affiliations/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/affiliations/forms.py b/affiliations/forms.py index afe9b279e..774a2e6a7 100644 --- a/affiliations/forms.py +++ b/affiliations/forms.py @@ -14,7 +14,7 @@ from .models import Affiliation, Institution class AffiliationForm(forms.ModelForm): name = forms.CharField(label='* Institution', max_length=300) country = LazyTypedChoiceField( - choices=countries, label='* Country', widget=CountrySelectWidget()) + choices=countries, label='* Country', widget=CountrySelectWidget(), initial='NL') class Meta: model = Affiliation -- GitLab