{# filepath: c:\Users\Darwin\Desktop\Client_Dashboard\public_html\dashboard\templates\team_detail.html #} {% extends "base.html" %} {% load static %} {% block title %}{{ team.name }} - Team Details{% endblock %} {% block content %}
{# Header del Equipo #}
{% if team.logo %} {{ team.name }} {% else %}
{% endif %}

{{ team.name }}

{% if team.city %} {{ team.city.name }}, {{ team.country.name }} {% elif team.country %} {{ team.country.name }} {% else %} Location not specified {% endif %}

Code: {{ team.code|upper }}
{% if can_view_historic %} Full Access {% else %} Limited Access {% endif %}
{# Estadísticas del Equipo #} {% if team_stats %}

{{ team_stats.total_matches }}

Total Matches

{{ team_stats.home_matches }}

Home Matches

{{ team_stats.away_matches }}

Away Matches

{% endif %} {# Tabs: Recent Matches y Players #}
{# Tab: Recent Matches #}
{% if recent_matches %}
{% for match in recent_matches %} {% endfor %}
Date Competition Home Team vs Away Team Status Actions
{{ match.date|date:"M d, Y" }}
{{ match.date|date:"H:i" }}
{% if match.competition %} {{ match.competition.name }} {% else %} - {% endif %}
{% if match.home_team_division.team.logo %} {{ match.home_team_division.team.name }} {% endif %} {{ match.home_team_division.team.name }}
{% if match.away_team_division.team.logo %} {{ match.away_team_division.team.name }} {% endif %} {{ match.away_team_division.team.name }}
{% if match.processing_status == 'completed' %} Completed {% elif match.processing_status == 'processing' %} Processing {% elif match.processing_status == 'pending' %} Pending {% else %} Failed {% endif %} View
{% else %}

No recent matches found

{% endif %}
{# Tab: Players #}
{% if players %}
{% for player in players %}
{% if player.logo %} {{ player.name }} {% else %}
{% endif %}
{{ player.name }}
{% if player.position %} {{ player.position.name }} {% else %} Position not specified {% endif %} {% if player.nationality %}
{{ player.nationality.name }} {% endif %}
{% endfor %}
{% else %}

No players found for this team

{% endif %}
{# Botón de Regreso #}
{% endblock %} {% block extra_js %} {% endblock %}