{% extends 'base.html' %} {% load static %} {% block title %}Historial de Partidos - {{ team.name }}{% endblock %} {% block nav_matches %}active{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if matches %}
{% for match in matches %} {% endfor %}
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
{% if total_matches > 50 %}

Mostrando 50 de {{ total_matches }} partidos. Ver más

{% endif %} {% else %}

No hay partidos

No se encontraron partidos con los filtros seleccionados.

{% endif %}
{% endblock %}