diff --git a/opentech/apply/funds/templates/funds/includes/status-block.html b/opentech/apply/funds/templates/funds/includes/status-block.html index 9a7fb2e616e96120c7aca168fb182ce7684b63a6..782e3d4999225db60eca1efa5a64a33b6493de2e 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 b0a965ccab242409cac75da402486072c01eb284..cb5744d5a2480962f84ab8a82375c63375a8cfc3 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': {