{% extends "admin/base.html" %} {% block admin_content %}
Dashboard
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 }}
#} {#
#}
Daily Votes (Last 30 Days)
Top TTS Models
{% for model in top_tts_models %} {% endfor %}
Rank Model ELO Score Win Rate Total Matches
{{ loop.index }} {{ model.name }} {{ model.current_elo|int }} {{ model.win_rate|round }}% {{ model.match_count }}
{#
#} {#
#} {#
Top Conversational Models
#} {#
#} {#
#} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# {% for model in top_conversational_models %}#} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# {% endfor %}#} {# #} {#
RankModelELO ScoreWin RateTotal Matches
{{ loop.index }}{{ model.name }}{{ model.current_elo|int }}{{ model.win_rate|round }}%{{ model.match_count }}
#} {#
#} {#
#}
Recent Votes
View All
{% for vote in recent_votes %} {% endfor %}
Date Type User Chosen Model Rejected Model
{{ 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 }}
Recent Users
View All
{% for user in recent_users %} {% endfor %}
Username Join Date Actions
{{ user.username }} {{ user.join_date.strftime('%Y-%m-%d %H:%M') }} View Details
{% endblock %}