{% extends "admin/base_site.html" %} {% block content %} {% load humanize %}

GameUI Statistics

Totals

Total Accounts {{ total_accounts }}
Total AuthAttempts {{ total_auth_attempts }}
Total Non-Self AuthAttempts {{ total_non_self_auth_attempts }}
Total Successful AuthAttempts {{ total_successful_auth_attempts }}
Total Successful Non-Self AuthAttempts {{ total_successful_non_self_auth_attempts }}
Total Defenses {{ total_defenses }}
Total Flags {{ total_flags }}
Total Unresolved Flags {{ total_unreviewed_flags }}
% Unlocked {{ unlocked_percent }}%
Active % Unlocked {{ active_unlocked_percent }}%

Most Active Users in the past 24 Hrs (by AuthAttempt count)

{% for account in most_active_accounts_authattempts %} {% endfor %}
Name Count View
{{ account.account_name }} {{ account.model_count }} View

Most Active Users in the past 24 Hrs (by Defense count)

{% for account in most_active_accounts_defenses %} {% endfor %}
Name Count View
{{ account.account_name }} {{ account.model_count }} View

Balance and Usage Stats

Stat 1 Day 3 Days 1 Week
Active Accounts {{ active_accounts_24 }} {{ active_accounts_72 }} {{ active_accounts_168 }}
% Accounts Active {{ active_percent_24 }}% {{ active_percent_72 }}% {{ active_percent_168 }}%
New Users / Hr {{ users_per_hr_24 }} {{ users_per_hr_72 }} {{ users_per_hr_168 }}
New Defenses / Hr {{ defenses_per_hr_24 }} {{ defenses_per_hr_72 }} {{ defenses_per_hr_168 }}
New Non-Self AuthAttempts / Hr {{ nonself_authattempts_per_hr_24 }} {{ nonself_authattempts_per_hr_72 }} {{ nonself_authattempts_per_hr_168 }}
Successful Non-Self AuthAttempts / Hr {{ successful_nonself_authattempts_per_hr_24 }} {{ successful_nonself_authattempts_per_hr_72 }} {{ successful_nonself_authattempts_per_hr_168 }}
Flags / Hr {{ flags_per_hr_24 }} {{ flags_per_hr_72 }} {{ flags_per_hr_168 }}
% Non-Self AuthAttempts Successful {{ percent_nonself_authattempts_successful_24 }}% {{ percent_nonself_authattempts_successful_72 }}% {{ percent_nonself_authattempts_successful_168 }}%
% Self-Attacks {{ percent_selfattack_24 }}% {{ percent_selfattack_72 }}% {{ percent_selfattack_168 }}%
% Non-Self Attacks Unique {{ percent_nonself_authattempt_unique_24 }}% {{ percent_nonself_authattempt_unique_72 }}% {{ percent_nonself_authattempt_unique_168 }}%
% Successful Non-Self Attacks Unique {{ percent_successful_nonself_authattempts_unique_24 }}% {{ percent_successful_nonself_authattempts_unique_72 }}% {{ percent_successful_nonself_authattempts_unique_168 }}%
Unique Attackers {{ unique_attackers_24 }} {{ unique_attackers_72 }} {{ unique_attackers_168 }}
Unique Successful Attackers {{ unique_successful_attackers_24 }} {{ unique_successful_attackers_72 }} {{ unique_successful_attackers_168 }}
% Unmoderated {{ unmoderated_percent_24 }}% {{ unmoderated_percent_72 }}% {{ unmoderated_percent_168 }}%
% With Restrictions {{ restrictions_percent_24 }}% {{ restrictions_percent_72 }}% {{ restrictions_percent_168 }}%
Restricted Attack Success % {{ restricted_success_percent_24 }}% {{ restricted_success_percent_72 }}% {{ restricted_success_percent_168 }}%

Random Defenses from the past 24 Hrs

{% for defense in recent_defenses %} {% endfor %}
Time Account View
{{ defense.timestamp|naturaltime }} {{ defense.creator_account.account_name }} View
Opening Defense{{ defense.pre_prompt }}
Access Code{{ defense.access_code }}
Closing Defense{{ defense.post_prompt }}
LLM Output{{ defense.llm_output }}

Random AuthAttempts from the past 24 Hrs

{% for authattempt in recent_auth_attempts %} {% endfor %}
Time Attacker Account Defender Account Success Attacker Won Defender Won View
{{ authattempt.timestamp|naturaltime }} {{ authattempt.attacking_account.account_name }} {{ authattempt.defending_account.account_name }} {{ authattempt.was_successful }} {{ authattempt.defending_transfer_amount }} {{ authattempt.attacking_transfer_amount }} View
Opening Defense{{ authattempt.defense_pre_prompt }}
Attacker Input{{ authattempt.attacker_input }}
Closing Defense{{ authattempt.defense_post_prompt }}
LLM Output{{ authattempt.llm_output }}
True Access Code{{ authattempt.access_code }}

Restriction Stats

account_percent is the percent of all accounts which currently have this restriction.

auth_attempt_percent is the percent of all auth attempts in which this restriction was active.

auth_attempt_success_percent is the success percent of auth attempts in which this restriction was active.

representation_percent is (fraction of accounts with this restriction) / (expected fraction of accounts with this restriction based on its starting weight.)

{{ restrictions_html|safe }} {% endblock %}