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

{{ division.name }}

Partidos Recientes

{{ matches_played }}

Jugadores Disponibles

{{ total_players }}

Estado
Temporada Activa
Últimos Partidos
{% for match in recent_matches %} {% empty %} {% endfor %}
Fecha Local Resultado Visitante Acción
{{ match.date|date:"d M Y" }}
{{ match.date|time:"H:i" }}
{{ match.home_team.name }} {% if match.home_score is not None %} {{ match.home_score }} - {{ match.away_score }} {% else %} vs {% endif %} {{ match.away_team.name }} Stats

No hay partidos recientes disponibles para esta división.

Plantilla (Top 10)
    {% for player in players %}
  • {{ player.common_name|default:player.first_name }}
    {{ player.position|default:"Jugador" }} {% if player.jersey_number %} #{{ player.jersey_number }} {% endif %}
  • {% empty %}
  • No hay jugadores disponibles.

  • {% endfor %}
{% if total_players > 10 %} {% endif %}
{% endblock %}