Skip to content
Snippets Groups Projects
Commit 1bf0a09d authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Update the text used for the statuses

parent 719cd1f4
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,6 @@ class Migration(migrations.Migration): ...@@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AddField( migrations.AddField(
model_name='projectpage', model_name='projectpage',
name='status', 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),
), ),
] ]
...@@ -84,10 +84,10 @@ class ProjectFunding(BaseFunding): ...@@ -84,10 +84,10 @@ class ProjectFunding(BaseFunding):
class ProjectPage(FundingMixin, BasePage): class ProjectPage(FundingMixin, BasePage):
STATUSES = ( STATUSES = (
('idea', "Just an Idea (Pre-alpha)"), ('idea', "Just an Idea. (Pre-alpha)"),
('exists', "It Exists! (Alpha/Beta)"), ('exists', "It Exists! (Alpha/Beta)"),
('release', "It's basically done. (Release)"), ('release', "It's basically done. (Release)"),
('production', "People Use It. (Production)"), ('production', "People Use it. (Production)"),
) )
subpage_types = [] subpage_types = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment