{% extends 'admin/base.html.twig' %} {% block title %}{{ is_edit ? 'Edit Team' : 'Create Team' }}{% endblock %} {% block page_title %}{{ is_edit ? 'Edit Team' : 'Create New Team' }}{% endblock %} {% block body %}
{{ form_start(form) }}
{{ form_label(form.name) }} {{ form_widget(form.name) }} {{ form_errors(form.name) }}
{{ form_label(form.logo) }} {{ form_widget(form.logo) }} {{ form_errors(form.logo) }} You can use an emoji or a URL to an image
Cancel
{{ form_end(form) }}
Help

Logo Examples:

  • Emoji: 🔥, ⚡, 🦁, 🐉
  • URL: https://example.com/logo.png
{% if is_edit %}

Team Stats:

  • Home Matches: {{ team.homeMatches|length }}
  • Away Matches: {{ team.awayMatches|length }}
  • Total Matches: {{ team.homeMatches|length + team.awayMatches|length }}
{% if (team.homeMatches|length + team.awayMatches|length) > 0 %}
Note: This team has matches. You cannot delete it without removing matches first.
{% endif %} {% endif %}
{% endblock %}