@@ -287,7 +287,7 @@ def __init__(self, *args, **kwargs):
287287
288288 def get_asciidoc (self ):
289289 asciidoc = render_to_string ("dojo/custom_asciidoc_report_findings.html" ,
290- {"findings" : self .findings ,
290+ {"findings" : self .findings . qs ,
291291 "host" : self .host ,
292292 "include_finding_notes" : self .finding_notes ,
293293 "include_finding_images" : self .finding_images ,
@@ -297,7 +297,7 @@ def get_asciidoc(self):
297297 def get_html (self ):
298298 html = render_to_string ("dojo/custom_pdf_report_finding_list.html" ,
299299 {"title" : self .title ,
300- "findings" : self .findings ,
300+ "findings" : self .findings . qs ,
301301 "include_finding_notes" : self .finding_notes ,
302302 "include_finding_images" : self .finding_images ,
303303 "host" : self .host ,
@@ -357,7 +357,7 @@ def __init__(self, *args, **kwargs):
357357 def get_html (self ):
358358 html = render_to_string ("dojo/custom_pdf_report_endpoint_list.html" ,
359359 {"title" : self .title ,
360- "endpoints" : self .endpoints ,
360+ "endpoints" : self .endpoints . qs ,
361361 "include_finding_notes" : self .finding_notes ,
362362 "include_finding_images" : self .finding_images ,
363363 "host" : self .host ,
@@ -366,7 +366,7 @@ def get_html(self):
366366
367367 def get_asciidoc (self ):
368368 asciidoc = render_to_string ("dojo/custom_asciidoc_report_endpoints.html" ,
369- {"endpoints" : self .endpoints ,
369+ {"endpoints" : self .endpoints . qs ,
370370 "host" : self .host ,
371371 "include_finding_notes" : self .finding_notes ,
372372 "include_finding_images" : self .finding_images ,
0 commit comments