This commit is contained in:
Ross
2021-11-28 23:49:34 +00:00
parent 27efcbf2c5
commit e63824cfd4
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -522,9 +522,9 @@ def create_series_findings(request):
if request.POST.get('action') == 'post':
series_id = request.POST.get('series')
findings_ids = request.POST.get('findings')
findings_ids = json.loads(request.POST.get('findings'))
description = request.POST.get('description')
annotation_json = request.POST.get('annotation_json')
annotation_json = json.loads(request.POST.get('annotation_json'))
series = Series.objects.get(pk=series_id)
findings = Finding.objects.filter(pk__in=findings_ids)