Skip to content

Commit

Permalink
added proposal_count for correct counts for each key
Browse files Browse the repository at this point in the history
  • Loading branch information
brosner committed Jul 6, 2011
1 parent 51ea29c commit 81d00dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name = "symposion",
version = "1.0a1.dev7",
version = "1.0a1.dev8",
description = "collection of Pinax apps for conferences",
url = "https://github.com/pinax/symposion",
author = "Brian Rosner",
Expand Down
3 changes: 2 additions & 1 deletion symposion/review/views.py
Expand Up @@ -300,7 +300,8 @@ def review_stats(request, key=None):
if key:
ctx.update({
"key": key,
"proposals": group_proposals(proposals_generator(request, proposals[key], check_speaker=not admin))
"proposals": group_proposals(proposals_generator(request, proposals[key], check_speaker=not admin)),
"proposal_count": proposals[key].count(),
})
else:
ctx["proposals"] = proposals
Expand Down

0 comments on commit 81d00dc

Please sign in to comment.