{% extends "dashboard/base.html" %} {% block dashboard_content %}

Overview

{{ sports_count }}
Sports
{{ teams_count }}
Teams
{{ stadiums_count }}
Stadiums
{{ games_count }}
Games
{{ pending_reviews }}
Pending Reviews

Recent Scraper Jobs

{% if recent_jobs %}
{% for job in recent_jobs %} {% endfor %}
Sport Status Games Time
{{ job.config.sport.short_name }} {{ job.config.season }} {{ job.status|upper }} {{ job.games_found }} {{ job.created_at|timesince }} ago
{% else %}

No recent scraper jobs.

{% endif %}

View All Jobs

Recent CloudKit Syncs

{% if recent_syncs %}
{% for sync in recent_syncs %} {% endfor %}
Config Status Records Time
{{ sync.configuration.name }} {{ sync.status|upper }} {{ sync.records_synced }} {{ sync.created_at|timesince }} ago
{% else %}

No recent sync jobs.

{% endif %}

View Sync Status

Sport Summary

{% 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 %}{{ stat.pending_reviews }}{% else %}0{% endif %}
{% endblock %}