﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
6437	get_karma_total() returns total Karma for an entire site, not for an associated comment.	Naoki Hiroshima	Naoki Hiroshima	"While Django's Karma is designed to give it to the comments, counting methods of get_karma_total(), get_good_karma_total(), and get_bad_karma_total() return the number for an entire site, not for the comments.

For instance, with the following typical usage of Krama counting methods, all goods and bads below ends up showing the same number for each.

{{{
{% for comment in comment_list %}
<div>
 <p>{{ comment.user }}</p>
 <p>{{ comment.comment }}</p>
 <p>Good ({{ comment.get_good_karma_total }})
    Bad ({{ comment.get_bad_karma_total }})</p>
</div>
{% endfor %}
}}}"		closed	contrib.comments	dev		wontfix			Unreviewed	1	0	0	0	0	0
