Revision history [back]
The view function askbot.views.users.show_users
(see in git repository) already contains variable called users
.
If you add user count to the request context:
data = {
...
'user_count': users.count(),
...
}
Then the number can be shown in the template that's rendered by the view.
Please consider forking askbot at github, making this fix and then give a pull request.