Comments app in Django

I wonder how ``is_public`` supposed to be used in FreeComments? Neither get_comment_count nor get_comment_list seems aware of it.

Recently i set up comment_utils app, which can use akismet module and some other ways to decide if comment shouldn't be public. Akismet check works very good, and spam comments get ``is_public`` flag set to false. However, comments template tags get_comment_count and get_comment_list don't use it. And display/count comments no matter if they're public or not.

As of now, i do the following:

{% get_free_comment_list for blog.entry object.id as comment_list %}
    {% for comment in comment_list %}
        {%if comment.is_public %}
        [...]
        {% endif %}
    {% endfor %}

get_free_comment_count still returns the number of all comments though.