{% extends "admin/base.html" %}
{% block admin_content %}
Total Users
{{ stats.total_users }}
Total Votes
{{ stats.total_votes }}
TTS Votes
{{ stats.tts_votes }}
{#
#}
{#
Conversational Votes
#}
{#
{{ stats.conversational_votes }}
#}
{#
#}
TTS Models
{{ stats.tts_models }}
{#
#}
{#
Conversational Models
#}
{#
{{ stats.conversational_models }}
#}
{#
#}
| Rank |
Model |
ELO Score |
Win Rate |
Total Matches |
{% for model in top_tts_models %}
| {{ loop.index }} |
{{ model.name }} |
{{ model.current_elo|int }} |
{{ model.win_rate|round }}% |
{{ model.match_count }} |
{% endfor %}
{##}
{# #}
{#
#}
{#
#}
{# #}
{# #}
{# | Rank | #}
{# Model | #}
{# ELO Score | #}
{# Win Rate | #}
{# Total Matches | #}
{#
#}
{# #}
{# #}
{# {% for model in top_conversational_models %}#}
{# #}
{# | {{ loop.index }} | #}
{# {{ model.name }} | #}
{# {{ model.current_elo|int }} | #}
{# {{ model.win_rate|round }}% | #}
{# {{ model.match_count }} | #}
{#
#}
{# {% endfor %}#}
{# #}
{#
#}
{#
#}
{#
#}
| Date |
Type |
User |
Chosen Model |
Rejected Model |
{% for vote in recent_votes %}
| {{ vote.vote_date.strftime('%Y-%m-%d %H:%M') }} |
{{ vote.model_type }} |
{% if vote.user %}
{{ vote.user.username }}
{% else %}
Anonymous
{% endif %}
|
{{ vote.chosen.name }} |
{{ vote.rejected.name }} |
{% endfor %}
| Username |
Join Date |
Actions |
{% for user in recent_users %}
| {{ user.username }} |
{{ user.join_date.strftime('%Y-%m-%d %H:%M') }} |
View Details
|
{% endfor %}
{% endblock %}