From b9d4e003d5296cb264cda9d5583b82bd3c5c8875 Mon Sep 17 00:00:00 2001 From: Matt Marshall Date: Fri, 5 Dec 2025 08:57:58 +0000 Subject: [PATCH] templates: titles and copy changes from rebrand Implements requested changes from https://opendataservices.plan.io/issues/60080#note-4 Changes existed across three files consisting of the "hero" banner and some paragraph copy. In the base template, there existed some stepwise conditional logic which only replaced one word "Quality" or "Submission" depending on a template variable resulting in e.g. "Data Quality Tool" or "Data Submission Tool". The new options are "Data Quality Checker" and "Data Submission Form", so I've moved the word "Data" inside each branch of the conditional as I think having this more readable is more important than saving a few bytes of space. There is only one word shared between the two branches of the conditional, and it'll make it easier to parse and change these in the future if they ever get re-labelled again. --- cove/cove_360/templates/cove_360/base.html | 4 ++-- cove/cove_360/templates/cove_360/input.html | 2 +- cove/cove_360/templates/cove_360/publishing.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cove/cove_360/templates/cove_360/base.html b/cove/cove_360/templates/cove_360/base.html index 24d08430..a85f234e 100644 --- a/cove/cove_360/templates/cove_360/base.html +++ b/cove/cove_360/templates/cove_360/base.html @@ -75,8 +75,8 @@ 360Giving
-

Data {% if submission_tool %}Submission{% else %}Quality{% endif %} Tool

-

{% if submission_tool %}Submit your 360Giving data file to be included in the 360Giving Data Registry and tools{% else %}Convert, Validate, Explore 360Giving Data{% endif %}

+

{% if submission_tool %}Data Submission Form{% else %}Data Quality Checker{% endif %}

+

{% if submission_tool %}Submit your 360Giving data file to be included in the 360Giving Data Quality Dashboard and tools{% else %}Check data using the 360Giving Data Standard{% endif %}

diff --git a/cove/cove_360/templates/cove_360/input.html b/cove/cove_360/templates/cove_360/input.html index e58cf1c7..ede33ce6 100644 --- a/cove/cove_360/templates/cove_360/input.html +++ b/cove/cove_360/templates/cove_360/input.html @@ -12,7 +12,7 @@

Check your data

-

Upload, provide a link to a file, or paste JSON to check and convert your data and get feedback on whether it is valid 360Giving data.

+

Upload a file, provide a link to a file, or paste JSON to check whether your data is valid 360Giving data. Get feedback on how it could be more useful.

{% if 'upload' in input_methods %} diff --git a/cove/cove_360/templates/cove_360/publishing.html b/cove/cove_360/templates/cove_360/publishing.html index 72e57f5d..74ae1d73 100644 --- a/cove/cove_360/templates/cove_360/publishing.html +++ b/cove/cove_360/templates/cove_360/publishing.html @@ -8,7 +8,7 @@ {% if DATA_SUBMISSION_ENABLED %}

Submit your data

-

Please ensure that your file has been checked using the Data Quality Tool before submitting as only valid 360Giving data can be included on the 360Giving Data Registry.

+

Please ensure that your file has been checked using the Data Quality Checker before submitting, as only valid 360Giving data can be included on the 360Giving Data Quality Dashboard and in tools like GrantNav.

{% csrf_token %}