From f1543d870a9e7b0ba6f67fdfd5d5c3e7dcdb9862 Mon Sep 17 00:00:00 2001 From: Holger Trampe Date: Fri, 22 Oct 2021 23:48:46 +0200 Subject: [PATCH] mh --- adm/views.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/adm/views.py b/adm/views.py index fb4e76d..9b16a70 100644 --- a/adm/views.py +++ b/adm/views.py @@ -695,12 +695,14 @@ class AdmImportFlow(TemplateView): # DataFiles normal_files = [] - + check_files = [] for f in DataFile.objects.filter(agency=agency): if(f.parent.name != "Standards Uploadbereich"): normal_files.append(f) + else: + check_files.append(f) - context.update({'check_files' : DataFile.objects.filter(agency=agency)}) + context.update({'check_files' : check_files}) context.update({'files' : normal_files})