{% extends basetemplate %} {% load i18n humanize admin_static %} {% block subtitle %}{% trans "Moderation" %}{% endblock %} {% block pagename %}{% trans "Moderation" %}{% endblock %} {% block description %}{% trans "These tools allow you to search for undesired behaviours and cheating patterns." %}{% endblock %} {% block admincontent %}
{% csrf_token %}
{% trans "Verify:" %}
{% if cheaters %} {% for cheater, fakes in cheaters %} {% endfor %}
{% trans "Possible cheaters" %}

{{ cheater.username }}

{% trans "Email" %} {% if cheater.email_isvalid %} {% trans {% else %} {% trans {% endif %} {{ cheater.email }}

{% trans "Reputation:" %} {{ cheater.reputation|intcomma }}

{% for fake in fakes %} {% endfor %}
{% trans "Profile" %} {% trans "Email" %} {% trans "Reputation" %} {% trans "Affecting actions" %} {% trans "Cross ips" %} {% trans "Cheating score" %}
{% trans "Possible fake accounts" %}
{{ fake.username }} {% if fake.email_isvalid %} {% trans {% else %} {% trans {% endif %} {{ fake.email }} {{ fake.reputation|intcomma }} {{ fake.fdata.affect_count }} {% trans "out of" %} {{ fake.fdata.total_actions }} ({{ fake.fdata.action_ratio|stringformat:".2f" }}%) {{ fake.fdata.cross_ip_count }} {% trans "out of" %} {{ fake.fdata.total_ip_count }} ({{ fake.fdata.cross_ip_ratio|stringformat:".2f" }}%) {{ fake.fdata.fake_score|stringformat:".2f" }}
{% endif %}
{% endblock %}