diff --git a/apps/map/forms.py b/apps/map/forms.py index 89af1d7..1e3937d 100644 --- a/apps/map/forms.py +++ b/apps/map/forms.py @@ -118,6 +118,9 @@ class LongCaseStudyForm(BaseCaseStudyForm): choices=POSITIVE_CASE_TYPE_CHOICES ) + self.fields['project_owners'].required = True + self.fields['shareholders'].required = True + self.helper.form_action = reverse('long-form') self.helper.layout = Layout( TabHolder( diff --git a/apps/map/models.py b/apps/map/models.py index d6d0e38..4a1a9ca 100644 --- a/apps/map/models.py +++ b/apps/map/models.py @@ -267,7 +267,7 @@ class CaseStudy(models.Model): # 1.4 country = CountryField( - verbose_name=_("Country field"), + verbose_name=_("Country"), help_text=_("Select the country of the project") )