{% extends 'base.html' %} {% load static %} {% block title %}Perfil del Equipo - {{ team.name }}{% endblock %} {% block nav_equipo %}active{% endblock %} {% block nav_team_profile %}active{% endblock %} {% block content %}
{% endif %}
{% if active_competition %} {{ active_competition.name }} {% endif %}
Victorias
Empates
Derrotas
| Fecha | Rival | Resultado | Estado |
|---|---|---|---|
| {{ match.date|date:"d/m/Y" }} | {% if match.home_team_division.team.id == team.id %} vs {{ match.away_team_division.team.name }} (L) {% else %} @ {{ match.home_team_division.team.name }} (V) {% endif %} | {% if match.home_team_division.team.id == team.id %} {{ match.score_home }} - {{ match.score_away }} {% else %} {{ match.score_away }} - {{ match.score_home }} {% endif %} | {% if match.home_team_division.team.id == team.id %} {% if match.score_home > match.score_away %} Victoria {% elif match.score_home == match.score_away %} Empate {% else %} Derrota {% endif %} {% else %} {% if match.score_away > match.score_home %} Victoria {% elif match.score_away == match.score_home %} Empate {% else %} Derrota {% endif %} {% endif %} |
| No hay partidos jugados | |||