From 1bf0a09d65983b4418001790af958443242e19a5 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Wed, 17 Jan 2018 14:19:30 +0000 Subject: [PATCH] Update the text used for the statuses --- .../public/projects/migrations/0003_projectpage_status.py | 2 +- opentech/public/projects/models.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opentech/public/projects/migrations/0003_projectpage_status.py b/opentech/public/projects/migrations/0003_projectpage_status.py index a8ec0880a..c1c72f4af 100644 --- a/opentech/public/projects/migrations/0003_projectpage_status.py +++ b/opentech/public/projects/migrations/0003_projectpage_status.py @@ -15,6 +15,6 @@ class Migration(migrations.Migration): migrations.AddField( model_name='projectpage', name='status', - field=models.CharField(choices=[('idea', 'Just an Idea (Pre-alpha)'), ('exists', 'It Exists! (Alpha/Beta)'), ('release', "It's basically done. (Release)"), ('production', 'People Use It. (Production)')], default='idea', max_length=25), + field=models.CharField(choices=[('idea', 'Just an Idea. (Pre-alpha)'), ('exists', 'It Exists! (Alpha/Beta)'), ('release', "It's basically done. (Release)"), ('production', 'People Use it. (Production)')], default='idea', max_length=25), ), ] diff --git a/opentech/public/projects/models.py b/opentech/public/projects/models.py index 7477f9449..5ace6d9db 100644 --- a/opentech/public/projects/models.py +++ b/opentech/public/projects/models.py @@ -84,10 +84,10 @@ class ProjectFunding(BaseFunding): class ProjectPage(FundingMixin, BasePage): STATUSES = ( - ('idea', "Just an Idea (Pre-alpha)"), + ('idea', "Just an Idea. (Pre-alpha)"), ('exists', "It Exists! (Alpha/Beta)"), ('release', "It's basically done. (Release)"), - ('production', "People Use It. (Production)"), + ('production', "People Use it. (Production)"), ) subpage_types = [] -- GitLab