{% extends 'base.html' %} {% load static %} {% block title %}Historial de Partidos - {{ team.name }}{% endblock %} {% block nav_matches %}active{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{{ team.name }} - {{ total_matches }} partido{{ total_matches|pluralize }}
| Fecha | Competición | Local | Resultado | Visitante | Acciones |
|---|---|---|---|---|---|
|
{{ match.date|date:"d/m/Y" }}
{{ match.date|date:"H:i" }} |
{{ match.competition.name|truncatewords:3 }} |
{{ match.home_team_division.team.name }}
|
{% if match.score_home is not None %} {% if match.home_team_division.team.id == team.id %} {% if match.score_home > match.score_away %} {{ match.score_home }} - {{ match.score_away }} {% elif match.score_home == match.score_away %} {{ match.score_home }} - {{ match.score_away }} {% else %} {{ match.score_home }} - {{ match.score_away }} {% endif %} {% elif match.away_team_division.team.id == team.id %} {% if match.score_away > match.score_home %} {{ match.score_home }} - {{ match.score_away }} {% elif match.score_home == match.score_away %} {{ match.score_home }} - {{ match.score_away }} {% else %} {{ match.score_home }} - {{ match.score_away }} {% endif %} {% else %} {{ match.score_home }} - {{ match.score_away }} {% endif %} {% else %} Próximo {% endif %} |
{{ match.away_team_division.team.name }}
|
Ver |
Mostrando 50 de {{ total_matches }} partidos. Ver más
No se encontraron partidos con los filtros seleccionados.