From 284a2bc030c4d15089b484b6a8ce28f6fb522f77 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Thu, 14 Feb 2019 14:23:55 +0000 Subject: [PATCH] GH-866: Make "casing" consistent across the statuses --- .../apply/funds/templates/funds/includes/status-block.html | 2 +- opentech/apply/funds/workflow.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/opentech/apply/funds/templates/funds/includes/status-block.html b/opentech/apply/funds/templates/funds/includes/status-block.html index 9a7fb2e61..782e3d499 100644 --- a/opentech/apply/funds/templates/funds/includes/status-block.html +++ b/opentech/apply/funds/templates/funds/includes/status-block.html @@ -1,6 +1,6 @@ <div class="wrapper wrapper--bottom-space"> <section class="section"> - <h4 class="heading heading--normal">By status</h4> + <h4 class="heading heading--normal">By Status</h4> <ul class="status-block"> {% for status, data in status_counts.items %} <li class="status-block__item"> diff --git a/opentech/apply/funds/workflow.py b/opentech/apply/funds/workflow.py index b0a965cca..cb5744d5a 100644 --- a/opentech/apply/funds/workflow.py +++ b/opentech/apply/funds/workflow.py @@ -752,7 +752,7 @@ PHASES_MAPPING = { 'statuses': phases_matching('internal_review'), }, 'in-discussion': { - 'name': 'In Discussion', + 'name': 'Ready for Discussion', 'statuses': phases_matching('discussion', exclude=[INITIAL_STATE, 'proposal_discussion']), }, 'more-information': { @@ -760,7 +760,7 @@ PHASES_MAPPING = { 'statuses': phases_matching('more_info'), }, 'invited-for-proposal': { - 'name': 'Invited for proposal', + 'name': 'Invited for Proposal', 'statuses': ['draft_proposal'], }, 'external-review': { @@ -768,7 +768,7 @@ PHASES_MAPPING = { 'statuses': phases_matching('external_review'), }, 'ready-for-determination': { - 'name': 'Ready for determination', + 'name': 'Ready for Determination', 'statuses': phases_matching('determination'), }, 'accepted': { -- GitLab