diff --git a/opentech/apply/funds/migrations/0007_update_date_fields.py b/opentech/apply/funds/migrations/0007_update_date_fields.py index c720f11dfe34b5fb53df8c5e93ae9857859f7f80..7b6b2829535b0139d491a0be0589e4acad48430e 100644 --- a/opentech/apply/funds/migrations/0007_update_date_fields.py +++ b/opentech/apply/funds/migrations/0007_update_date_fields.py @@ -16,7 +16,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='round', name='end_date', - field=models.DateField(blank=True, default=datetime.date.today, help_text='If no end date is provided the round will remain open.', null=True), + field=models.DateField(blank=True, default=datetime.date.today, help_text='When no end date is provided the round will remain open indefinitely.', null=True), ), migrations.AlterField( model_name='round', diff --git a/opentech/apply/funds/models.py b/opentech/apply/funds/models.py index bea8fff04469b310547323bdc5684035074fcdfe..2245632770fc915fd29ae90129a2580d30c9fc2d 100644 --- a/opentech/apply/funds/models.py +++ b/opentech/apply/funds/models.py @@ -107,7 +107,7 @@ class Round(AbstractStreamForm): blank=True, null=True, default=date.today, - help_text='If no end date is provided the round will remain open.' + help_text='When no end date is provided the round will remain open indefinitely.' ) content_panels = AbstractStreamForm.content_panels + [