We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40b34a commit fbe0ed8Copy full SHA for fbe0ed8
junction/proposals/dashboard.py
@@ -145,7 +145,9 @@ def reviewer_comments_dashboard(request, conference_slug):
145
by_conference.setdefault(id, [reviewers.reviewer, 0])
146
by_conference[id][1] = ProposalComment.objects.filter(
147
commenter=reviewers.reviewer,
148
- deleted=False, private=True).count()
+ deleted=False, private=True,
149
+ proposal__status=ProposalStatus.PUBLIC,
150
+ proposal__conference=conference).count()
151
# by_section is dict with
152
# find each reviewers section and their comments
153
# Need to rework on this code section to make it 1-2 loops
0 commit comments