This commit is contained in:
parent
b9b65cb6b8
commit
f1543d870a
|
|
@ -695,12 +695,14 @@ class AdmImportFlow(TemplateView):
|
||||||
|
|
||||||
# DataFiles
|
# DataFiles
|
||||||
normal_files = []
|
normal_files = []
|
||||||
|
check_files = []
|
||||||
for f in DataFile.objects.filter(agency=agency):
|
for f in DataFile.objects.filter(agency=agency):
|
||||||
if(f.parent.name != "Standards Uploadbereich"):
|
if(f.parent.name != "Standards Uploadbereich"):
|
||||||
normal_files.append(f)
|
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})
|
context.update({'files' : normal_files})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue