From 799d824e7dc1d15f8c91390f7d8784ecf0fec4bb Mon Sep 17 00:00:00 2001 From: alazo Date: Mon, 7 May 2018 14:47:35 +0200 Subject: [PATCH] Added direction in imputation choices --- stages/models.py | 1 + stages/views.py | 1 + 2 files changed, 2 insertions(+) diff --git a/stages/models.py b/stages/models.py index 83099c1..042e3c2 100644 --- a/stages/models.py +++ b/stages/models.py @@ -552,6 +552,7 @@ IMPUTATION_CHOICES = ( ('EDE', 'EDE'), ('EDS', 'EDS'), ('CAS_FPP', 'CAS_FPP'), + ('Direction', 'Direction'), ) diff --git a/stages/views.py b/stages/views.py index 24d3239..5f39679 100644 --- a/stages/views.py +++ b/stages/views.py @@ -407,6 +407,7 @@ class HPImportView(ImportViewBase): ('#Mandat_ASA', 'ASAFE'), ('#Mandat_ASE', 'ASEFE'), ('#Mandat_ASSC', 'ASSCFE'), + ('Direction', 'Direction'), ]) def import_data(self, up_file):