{% extends 'base.html' %} {% load static %} {% block title %}Dashboard - TikiStats{% endblock %} {% block nav_dashboard %}active{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if division_context %} {% if active_competition %}

{{ active_competition.name }}

{{ active_competition.season }} {% if active_competition.start_date and active_competition.end_date %} | {{ active_competition.start_date|date:"d/m/Y" }} - {{ active_competition.end_date|date:"d/m/Y" }} {% endif %}
{% if division_context.competition_stage == 'groups' %} Fase de Grupos {% elif division_context.competition_stage == 'playoffs' %} Playoffs {% elif division_context.competition_stage == 'finished' %} Finalizada {% else %} En Curso {% endif %}
{% endif %} {% if groups_data %}

Fase de Grupos

{% for group_data in groups_data %}
{{ group_data.name }}
{% if group_data.user_team_in_group %} Tu grupo {% endif %}
{% for standing in group_data.standings %} {% empty %} {% endfor %}
# Equipo PJ G E P DG Pts
{{ standing.position }}
{{ standing.team.name|truncatewords:4 }}
{% if standing.qualified %}
Clasificado
{% endif %}
{{ standing.matches_played }} {{ standing.wins }} {{ standing.draws }} {{ standing.losses }} {% if standing.goal_difference > 0 %}+{% endif %}{{ standing.goal_difference }} {{ standing.points }}
No hay equipos en este grupo
{% endfor %}
PJ: Partidos Jugados G: Ganados E: Empatados P: Perdidos DG: Diferencia de Goles Pts: Puntos
{% endif %} {% if playoff_data %}

Bracket de Playoffs

Sistema de playoffs detectado. Visualización próximamente.
{% endif %}
Últimos Partidos
{% if division_context.recent_matches %}
    {% for match in division_context.recent_matches %}
  • {{ match.home_team_division.team.name }} {{ match.score_home }} - {{ match.score_away }} {{ match.away_team_division.team.name }}
    {{ match.date|date:"d/m/Y" }}
  • {% endfor %}
{% else %}

No hay partidos recientes.

{% endif %}
{{ division_context.stats.total_teams }}
Equipos
{{ division_context.stats.total_players }}
Jugadores
{{ division_context.stats.matches_played }}
Partidos Jugados
{% else %}
Selecciona una división para ver su información.
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}