http://codereview.appspot.com/5475061/diff/1/codereview/views.py#newcode729
codereview/views.py:729: user email or account nickname, and sets
request.user_to_show
I'm not sure how we aligned multi-line docstring, especially when it's
the first line. But I'd either write this in a single line or aligning
"user" at the height of the first quotation mark.
http://codereview.appspot.com/5475061/diff/1/codereview/views.py#newcode3693
codereview/views.py:3693: num_issues_open = models.Issue.all()\
Personally I prefer to create filters by using multiple statements
instead of breaking a single statement in multiple lines by using
backslashes.
But maybe that's really just a personal thing :)
http://codereview.appspot.com/5475061/diff/1/codereview/views.py#newcode3701
codereview/views.py:3701: .filter('reviewers =', user.email())\
Do these changes require new indexes?
I wonder how we should handle private issues here. Should we exclude
them from this public stats? What do you think?
http://codereview.appspot.com/5475061/diff/1/codereview/views.py#newcode3706
codereview/views.py:3706: {'userinfo': user,
Why did you change this? Do we have any naming conflicts in the
template?