{% extends 'base.html' %} {% load i18n %} {% block content %} {% include 'competition_nav.html' with active='team_list' %}
{% for team in teams %} {% endfor %}
{% trans 'Name' %} {% trans 'Affiliation' %} {% trans 'Country' %}
{% if team.image %} {{ team.user.username }} {% endif %} {{ team.user.username }} {% if team.affiliation %}{{ team.affiliation }}{% endif %} {{ team.country }}
{% endblock %}