{% extends 'admin/base.html.twig' %} {% block title %}Teams{% endblock %} {% block page_title %}Teams Management{% endblock %} {% block body %}

All Teams

➕ Create New Team
{% if teams is empty %}
No teams found. Create your first team to get started!
{% else %}
{% for team in teams %} {% endfor %}
ID Logo Name Home Matches Away Matches Created Actions
{{ team.id }} {% if team.logo %} {{ team.logo }} {% else %} - {% endif %} {{ team.name }} {{ team.homeMatches|length }} {{ team.awayMatches|length }} {{ team.createdAt|date('M d, Y') }}
Edit
{% endif %} {% endblock %}