fixed pk joining
This commit is contained in:
parent
df0ea0655c
commit
2b0b986530
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ def result_notification_prepare(request, section_slug, status):
|
||||||
"section_slug": section_slug,
|
"section_slug": section_slug,
|
||||||
"status": status,
|
"status": status,
|
||||||
"proposals": proposals,
|
"proposals": proposals,
|
||||||
"proposal_pks": " ".join(proposal_pks),
|
"proposal_pks": " ".join([str(pk) for pk in proposal_pks]),
|
||||||
}
|
}
|
||||||
return render(request, "reviews/result_notification_prepare.html", ctx)
|
return render(request, "reviews/result_notification_prepare.html", ctx)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue