{% extends 'base.html' %} {% load static %} {% block title %}{{ competition.name }} - TikiStats{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ competition.name }}

{{ competition.division.name }}

{% if competition.start_date or competition.end_date %}
{% if competition.start_date %} {{ competition.start_date|date:"d/m/Y" }} {% endif %} {% if competition.start_date and competition.end_date %} - {% endif %} {% if competition.end_date %} {{ competition.end_date|date:"d/m/Y" }} {% endif %}
{% endif %}
{{ stats.played_matches }}
Partidos Jugados
{{ stats.wins }}
Victorias
{{ stats.draws }}
Empates
{{ stats.losses }}
Derrotas
Goles a Favor
{{ stats.goals_for }}
Goles en Contra
{{ stats.goals_against }}
Diferencia de Goles
{% if stats.goal_difference > 0 %}
+{{ stats.goal_difference }}
{% elif stats.goal_difference < 0 %}
{{ stats.goal_difference }}
{% else %}
{{ stats.goal_difference }}
{% endif %}
Todos los Partidos
{% if all_matches %}
{% for match in all_matches %} {% endfor %}
Fecha Local Resultado Visitante Acciones
{{ match.date|date:"d/m/Y" }} {{ match.home_team_division.team.name }} {% if match.score_home is not None %} {{ match.score_home }} - {{ match.score_away }} {% else %} Por jugar {% endif %} {{ match.away_team_division.team.name }} Ver
{% else %}

No hay partidos registrados

{% endif %}
{% if groups_data %}
Fase de Grupos
{% for group in groups_data %}
{{ group.name }}
{% for standing in group.standings %} {% endfor %}
Pos Equipo PJ Pts
{{ standing.position }} {{ standing.team.name }} {{ standing.matches_played }} {{ standing.points }}
{% endfor %}
{% endif %} {% if playoff_data %}
Playoffs

Bracket de playoffs disponible

{% endif %}
{% endblock %}