Changeset - 32c2d697b0f0
[Not reviewed]
0 1 0
Christopher Neugebauer - 8 years ago 2016-08-15 23:35:34
_@chrisjrn.com
PEBACK 3
1 file changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/reviews/views.py
Show inline comments
...
 
@@ -257,7 +257,11 @@ def review_admin(request, section_slug):
 
                    continue
 
                already_seen.add(user.pk)
 

	
 
                user.comment_count = Review.objects.filter(user=user).count()
 
                user.comment_count = Review.objects.filter(
 
                    user=user,
 
                    proposal__kind__section__slug=section_slug,
 
                ).count()
 
                
 
                user_votes = LatestVote.objects.filter(
 
                    user=user,
 
                    proposal__kind__section__slug=section_slug,
0 comments (0 inline, 0 general)