diff --git a/CHANGELOG b/CHANGELOG index 9d87bd4bb1d95b48913cd5c36d79a0e6dc738030..007e178e497630900211d5575dbe03f0a8ac33db 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 ca328ad8373ca4da38eb0a5ffdfe7a6aa6464ac0..8458695b28679b017c3e3c1ab78d7f6399fa5373 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,