Lengthen "key actors" and "who..involved" fields

This commit is contained in:
Carl van Tonder
2018-05-24 20:52:43 -04:00
parent f595532db5
commit 006262c7ea
3 changed files with 105 additions and 10 deletions

View File

@ -813,12 +813,9 @@ class CaseStudy(models.Model):
)
# 3.1.3 + 3.2.5
key_actors_involved = models.CharField(
key_actors_involved = models.TextField(
verbose_name=_('Key actors involved (individual/organisational)'),
max_length=256,
default=None,
null=True,
blank=True
blank=True, null=True
)
# 3.1.4
@ -944,12 +941,9 @@ class CaseStudy(models.Model):
)
# 3.2.4.2
who_has_been_involved = models.CharField(
who_has_been_involved = models.TextField(
verbose_name=_("Which communities, groups and organisations have been involved?"),
max_length=512,
default=None,
null=True,
blank=True
blank=True, null=True
)
# 3.2.4.3