{% extends "kadmin/base.html" %} {% load waffle_tags %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %} {% switch 'karma' %} {% else %}

Karma is currently disabled. Activate waffle switch 'karma' to enable.

{% endswitch %}

Top Contributors - All Time

    {% for user in top_alltime %}
  1. {{ user.user.username }}: Points: {{ user.points }} | Answers: {{ user.answers }} | First Answers: {{ user.first_answers }} | Solutions: {{ user.solutions }} | Helpful Votes: {{ user.helpful_votes }} | Not Helpful Votes: {{ user.nothelpful_votes }}
  2. {% endfor %}

Top Contributors - Last 7 Days

    {% for user in top_week %}
  1. {{ user.user.username }}: Points: {{ user.points }} | Answers: {{ user.answers }} | First Answers: {{ user.first_answers }} | Solutions: {{ user.solutions }} | Helpful Votes: {{ user.helpful_votes }} | Not Helpful Votes: {{ user.nothelpful_votes }}
  2. {% endfor %}
{% csrf_token %}

User Karma{% if username %}: {{ username }}{% endif %}

{% if user_karma %} {% for row in user_karma %} {% endfor %}
{{ row.key }} {{ row.value }}
{% else %} {% if username %}

User or karma data not found.

{% endif %} {% endif %}

Initialize Karma

Warning: This will launch a task to delete all existing karma data from redis and recalculate from the database.

{% csrf_token %}

Recalculate Karma Points

{% csrf_token %}
{% endblock %} {% block footer %} {{ block.super }} {% endblock %}