From 370f93024586affa7f60375503f9ee89af44aafe Mon Sep 17 00:00:00 2001 From: Tore Brede <Tore.Brede@uib.no> Date: Thu, 19 Aug 2021 11:09:30 +0200 Subject: [PATCH] GREG-21: Allowing contact person for unit to be blank --- greg/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/greg/models.py b/greg/models.py index 54b31d6b..9d5c7d75 100644 --- a/greg/models.py +++ b/greg/models.py @@ -97,8 +97,7 @@ class PersonRole(BaseModel): # attached to the institution but does not have a guest account start_date = models.DateField(null=True) end_date = models.DateField() - # TODO Is this field needed? - contact_person_unit = models.TextField() + contact_person_unit = models.TextField(blank=True) comments = models.TextField(blank=True) available_in_search = models.BooleanField(default=False) registered_by = models.ForeignKey( -- GitLab