{% extends 'base.html.twig' %} {% block title %}Teams - Sawnoff League{% endblock %} {% block body %}

Teams

Browse all participating teams in the league

{% if teams is not empty %}
{% for team in teams %}
{% if team.logo %} {{ team.name }} {% else %}
{{ team.name|slice(0, 1)|upper }}
{% endif %}
{{ team.name }}
Member since {{ team.createdAt|date('Y') }}
{% endfor %}
{% else %}

No teams yet!

There are currently no teams registered in the league.

{% endif %}
{% endblock %}