From 3eaf8ba66a91df678c3c32385383b4b2bac900b0 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 24 Feb 2021 18:16:54 +0100 Subject: [PATCH] ETL label changed --- CHANGELOG | 3 ++- smash/web/views/study.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9d87bd4b..007e178e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,7 +6,8 @@ smasch (1.0.0~beta.6-1) unstable; urgency=low possible text value (#373) * bug fix: when editing an appointment type, clicking cancel redirected you to the list of languages (#372) - + * bug fix: ETL label for Subject import changed to properly describe the + action (#70) -- Piotr Gawron <piotr.gawron@uni.lu> Wed, 24 Feb 2021 12:00:00 +0200 diff --git a/smash/web/views/study.py b/smash/web/views/study.py index ca328ad8..8458695b 100644 --- a/smash/web/views/study.py +++ b/smash/web/views/study.py @@ -76,7 +76,7 @@ def get_info_about_etl_entries(study: Study): 'worker': str(import_data.import_worker) }) for import_data in SubjectImportData.objects.filter(study=study).all(): - etl_entries.append({'type': 'Subject visit', + etl_entries.append({'type': 'Import subject', 'file': import_data.filename, 'filetype': 'CSV', 'run_at': import_data.run_at_times, -- GitLab