The front page of askbot shows the number of total questions. Similarly, I think it is a good idea to show the number of people on the people page at http://askbot.org/en/users/
Please add this feature.
Also, please let me know how to add this feature. What table stores the people information ?
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.
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-07-01 10:22:31 -0500
Seen: 43 times
Last updated: Jul 01 '12
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.