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})