From 8b997f7173d80e80f040e7ee919a7edc6403ff2d Mon Sep 17 00:00:00 2001 From: bmedx Date: Mon, 13 May 2019 13:05:06 -0400 Subject: [PATCH] DE-1479, update instructor dash verbiage for reports --- .../instructor/instructor_dashboard_2/data_download.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lms/templates/instructor/instructor_dashboard_2/data_download.html b/lms/templates/instructor/instructor_dashboard_2/data_download.html index 400c376dbc..a06d7160b2 100644 --- a/lms/templates/instructor/instructor_dashboard_2/data_download.html +++ b/lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -106,7 +106,7 @@ from openedx.core.djangolib.markup import HTML, Text

${_("Reports Available for Download")}

- ${_("The reports listed below are available for download. A link to every report remains available on this page, identified by the UTC date and time of generation. Reports are not deleted, so you will always be able to access previously generated reports from this page.")} + ${_("The reports listed below are available for download, identified by UTC date and time of generation.")}

%if settings.FEATURES.get('ENABLE_ASYNC_ANSWER_DISTRIBUTION'): @@ -117,9 +117,13 @@ from openedx.core.djangolib.markup import HTML, Text ## Translators: a table of URL links to report files appears after this sentence.

- ${Text(_("{strong_start}Note{strong_end}: To keep student data secure, you cannot save or email these links for direct access. Copies of links expire within 5 minutes.")).format( + ${Text(_("{strong_start}Note{strong_end}: {ul_start}{li_start}To keep student data secure, you cannot save or email these links for direct access. Copies of links expire within 5 minutes.{li_end}{li_start}Report files are deleted 90 days after generation. If you will need access to old reports, download and store the files, in accordance with your institution's data security policies.{li_end}{ul_end}")).format( strong_start=HTML(""), strong_end=HTML(""), + ul_start=HTML("

"), + li_start=HTML("
  • "), + li_end=HTML("
  • "), )}