{% extends 'base.html' %} {% block content %}

Game Statistics

{{ game_stats.total|floatformat:0 }}
Total Games
{{ game_stats.final|floatformat:0 }}
Completed
{{ game_stats.scheduled|floatformat:0 }}
Scheduled
{{ game_stats.today }}
Today
{{ game_stats.this_week }}
This Week

CloudKit Sync Statistics

{{ sync_stats.total|floatformat:0 }}
Total Records
{{ sync_stats.synced|floatformat:0 }}
Synced
{{ sync_stats.pending|floatformat:0 }}
Pending
{{ sync_stats.failed|floatformat:0 }}
Failed
{% if sync_stats.total > 0 %}
Sync Progress {{ sync_stats.synced }} / {{ sync_stats.total }} ({% widthratio sync_stats.synced sync_stats.total 100 %}%)
{% endif %}

Statistics by Sport

{% for stat in sport_stats %} {% endfor %}
Sport Teams Stadiums Games Pending Reviews
{{ stat.sport.short_name }}
{{ stat.sport.name }}
{{ stat.teams }} {{ stat.stadiums }} {{ stat.games }} {% if stat.pending_reviews > 0 %} {{ stat.pending_reviews }} {% else %} 0 {% endif %}
{% endblock %}