Improve error handling for web upload of bad CSV

This commit is contained in:
Scot Hacker 2019-04-01 23:41:04 -07:00
parent ad0a1aa44a
commit e9a7bbe48c
2 changed files with 9 additions and 3 deletions

View file

@ -24,6 +24,12 @@ def import_csv(request) -> HttpResponse:
importer = CSVImporter()
results = importer.upsert(filepath)
ctx["results"] = results
ctx["results"] = None
if results:
ctx["results"] = results
else:
messages.error(request, "Could not parse provided CSV file.")
return redirect(reverse("todo:import_csv"))
return render(request, "todo/import_csv.html", context=ctx)