{% extends 'base.html' %} {% block title %}{{ team.name }}{% endblock %} {% load i18n %} {% load league_tags %} {% block content %}

{{ team.name }}


{% include 'content/team_details.html' with team=team team_more=team_more %} {% if team_roster %}

{% trans "Roster" %}

{% include 'content/team_roster.html' with roster=team_roster %} {% endif %} {% if team_schedule %}

{% trans "Schedule" %}

{% include 'content/schedule.html' with schedule=team_schedule my_team=team.pk %} {% endif %}

{% endblock %}