This page last changed on Sep 07, 2011 by kristin.bradley@involver.com.

stats

Stats about your Get Satisfaction community.

Attributes

name type description
stats.topics_posted integer Number of topics posted in your community
stats.people integer Number of people in your community
stats.employees integer Number of employees in your community

Examples

{% if get_satisfaction.display_stats %}
    <h2>Community Activity</h2>

    <table>
        <tr>
            <th>Topics Posted</th>
            <td id="num_topics">{{ get_satisfaction.stats.topics_posted | number_with_delimiter }}</td>
        </tr>
        <tr>
            <th>People</th>
            <td id="num_people">{{ get_satisfaction.stats.people | number_with_delimiter }}</td>
        </tr>
        <tr>
            <th>Employees</th>
            <td id="num_employees">{{ get_satisfaction.stats.employees | number_with_delimiter }}</td>
        </tr>
    </table>
{% endif %}
Document generated by Confluence on Feb 12, 2013 09:09