{% extends 'base.html' %} {% load static %} {% block title %}Plantilla - {{ team.name }}{% endblock %} {% block nav_equipo %}active{% endblock %} {% block nav_team_roster %}active{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if team.logo %} {{ team.name }} {% else %} Logo por defecto {% endif %}

Plantilla de {{ team.name }}

{{ total_players }} jugadores {% if division %} • {{ division.name }} {% endif %}

Volver al Perfil
{% for position_category, position_data in players_by_position.items %}

{{ position_data.name }}

{{ position_data.players|length }} jugador{{ position_data.players|length|pluralize:"es" }}
{% empty %}

No hay jugadores registrados

Aún no se han agregado jugadores a la plantilla del equipo.

{% endfor %}
{% endblock %}