{% if team is empty %}
No team found by this id.
{% else %}
{% if team.publicdescription is not empty %} {% endif %} {% if showAffiliations and team.affiliation is not empty %} {% if showFlags and team.affiliation.country is not empty %} {% endif %} {% endif %} {% if team.location is not empty %} {% endif %}
Name {{ team.effectiveName }}
Category {{ team.category.name }}
Description {{ team.publicdescription | nl2br }}
Affiliation {% set affiliationId = team.affiliation.affilid %} {% if showExternalId(team.affiliation) %} {% set affiliationId = team.affiliation.externalid %} {% endif %} {% set affiliationLogo = affiliationId | assetPath('affiliation') %} {% if affiliationLogo %} {% endif %} {{ team.affiliation.name }}
Country {{ team.affiliation.country | countryFlag(true) }}
Location {{ team.location }}
{% set teamId = team.teamid %} {% if showExternalId(team) %} {% set teamId = team.externalid %} {% endif %} {% set teamImage = teamId | assetPath('team') %} {% if teamImage %}
Picture of team {{ team.effectiveName }}
{% endif %}
{% endif %}