From 59350e0c0066cbde2fa1542c70af96e38685adcb Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 11 May 2017 12:55:22 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Rename=20=E2=80=98generate=20preview?= =?UTF-8?q?=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘Print a test letter’ seems to be closer to what people’s expectations of what this feature does are. The word ‘generate’ sounded too much like something the system was doing, rather than something you, the user, were doing. --- app/templates/views/check.html | 2 +- app/templates/views/send-test.html | 2 +- app/templates/views/templates/_template.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/views/check.html b/app/templates/views/check.html index a9c3b3a2d..8f0015b24 100644 --- a/app/templates/views/check.html +++ b/app/templates/views/check.html @@ -178,7 +178,7 @@ {% if template.template_type != 'letter' or not request.args.from_test %} {% else %} - Download as PDF + Download as a printable PDF {% endif %} Back diff --git a/app/templates/views/send-test.html b/app/templates/views/send-test.html index 53e0a515f..51c827330 100644 --- a/app/templates/views/send-test.html +++ b/app/templates/views/send-test.html @@ -18,7 +18,7 @@ Example text message {% else %} {% if template.template_type == 'letter' %} - Generate preview + Print a test letter {% else %} Send yourself a test {% endif %} diff --git a/app/templates/views/templates/_template.html b/app/templates/views/templates/_template.html index 646920234..e74e8e0a5 100644 --- a/app/templates/views/templates/_template.html +++ b/app/templates/views/templates/_template.html @@ -14,7 +14,7 @@
- {{ 'Generate preview' if template.template_type == 'letter' else 'Send yourself a test' }} + {{ 'Print a test letter' if template.template_type == 'letter' else 'Send yourself a test' }}
{% endif %} From 7074d82d5f75c1425fbdfa2d7b8df1730707d1da Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 11 May 2017 12:57:25 +0100 Subject: [PATCH 2/2] Make download into a normal button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s the primary action on this page. We use big, bold links for lists of links, eg services, templates. --- app/templates/views/check.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/check.html b/app/templates/views/check.html index 8f0015b24..bb4c4c9d8 100644 --- a/app/templates/views/check.html +++ b/app/templates/views/check.html @@ -178,7 +178,7 @@ {% if template.template_type != 'letter' or not request.args.from_test %} {% else %} - Download as a printable PDF + Download as a printable PDF {% endif %} Back