{% 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 %}
{% if team.logo %} {{ team.name }} {% else %} Logo por defecto {% endif %}

{{ team.name }}

{% if active_competition %} {{ active_competition.name }} {% endif %}

{{ stats.points }}
Puntos
{{ stats.matches_played }}
Partidos Jugados
{{ stats.goals_for }}
Goles a Favor
{{ stats.goal_difference|stringformat:"+d" }}
Diferencia de Goles

{{ stats.wins }}

Victorias

{{ stats.draws }}

Empates

{{ stats.losses }}

Derrotas

Últimos Partidos

{% for match in recent_matches %} {% empty %} {% endfor %}
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
{% endblock %}