From 2a773e72000043d8dde711547b191ef4d238357e Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Mon, 27 Apr 2026 14:26:03 +0100 Subject: [PATCH] Updated reports to 90 days On the Choose a timeframe page in the reports section: - added an radio for 'Last 90 days' - added '(includes today)' after each radio mentioning days - to align with display in QA - changed 31 to 90 on the last radio option --- app/views/reports/choose-dates.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app/views/reports/choose-dates.html b/app/views/reports/choose-dates.html index 19a99b09..367579bc 100644 --- a/app/views/reports/choose-dates.html +++ b/app/views/reports/choose-dates.html @@ -141,22 +141,26 @@ }, { "value": "Last7days", - "text": "Last 7 days" + "text": "Last 7 days (includes today)" }, { "value": "Last14days", - "text": "Last 14 days" + "text": "Last 14 days (includes today)" }, { "value": "Last31days", - "text": "Last 31 days" + "text": "Last 31 days (includes today)" + }, + { + "value": "Last90days", + "text": "Last 90 days (includes today)" }, { divider: "or" }, { "value": "custom_date_range", - "text": "Select custom date range up to 31 days", + "text": "Select custom date range up to 90 days", conditional: { html: custom_date_range }