Merge pull request #3354 from alphagov/recently-not-yet

Say ‘recently’ not ‘yet’ because jobs aren’t forever
This commit is contained in:
Chris Hill-Scott
2020-03-06 10:35:59 +00:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@
{% endif %}
{% if not jobs and not show_scheduled_jobs %}
<p class="govuk-body">
You have not uploaded any files yet.
You have not uploaded any files recently.
</p>
{% if current_service.has_permission('upload_letters') %}
<p class="govuk-body">

View File

@@ -39,11 +39,11 @@ def test_no_upload_letters_button_without_permission(
@pytest.mark.parametrize('extra_permissions, expected_empty_message', (
(['letter'], (
'You have not uploaded any files yet. '
'You have not uploaded any files recently. '
'To upload a list of contact details, first choose a template.'
)),
(['letter', 'upload_letters'], (
'You have not uploaded any files yet. '
'You have not uploaded any files recently. '
'Upload a letter and Notify will print, pack and post it for you. '
'To upload a list of contact details, first choose a template.'
)),