Fix wording of 4.4. Closes #33

This commit is contained in:
2018-03-31 16:33:35 +11:00
parent 4147dc7d32
commit 0f0f78bd24
2 changed files with 36 additions and 7 deletions

View File

@ -1000,17 +1000,14 @@ class CaseStudy(models.Model):
# 4.4
shown_on_other_platforms = models.BooleanField(
verbose_name=_("Show on other platforms?"),
help_text=_("Tick the box if you would like us to show this case study on other social media platforms"),
verbose_name=_("Is this case study shown on other platforms?"),
default=True
)
# 4.4.1
shown_on_other_platforms_detail = models.CharField(
verbose_name=_("Show on other platforms - Detail"),
help_text=_("List the social media platforms that you would like us to specifically publish the case study on"),
max_length=128,
null=True,
shown_on_other_platforms_detail = models.TextField(
verbose_name=_("Shown on other platforms - Detail"),
help_text=_("Please provide links to other places the case study appears."),
blank=True
)