Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy-Galil committed Aug 29, 2024
1 parent 4d16c37 commit 9301180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djang/importer/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def tabs(request, report_id, report_date):
"<select size = 10 onchange='window.location.replace(\"/details/"+str(report_id)+"/\"+this.options[this.selectedIndex].innerHTML)'>"
tab_list = models.AssetDetails.objects.values("category").filter(reports_id=report_id).distinct()
for k in tab_list:
output = output+"<option>"+k["category"]+"'</option>"
output = output+"<option>"+k["category"]+"</option>"
output = output+"</select><br><button onclick='window.location.replace(\"/\")'>Home</button>"
return HttpResponse(output)

Expand Down

0 comments on commit 9301180

Please sign in to comment.