{% extends 'admin/base.html.twig' %} {% block title %}{{ is_edit ? 'Edit Round' : 'Create Round' }}{% endblock %} {% block page_title %}{{ is_edit ? 'Edit Round' : 'Create New Round' }}{% endblock %} {% block body %}
{% if season %}
Season: {{ season.name }} ({{ season.startDate|date('M d, Y') }} - {{ season.endDate|date('M d, Y') }})
{% endif %} {{ form_start(form) }}
{{ form_label(form.name) }} {{ form_widget(form.name) }} {{ form_errors(form.name) }}
{{ form_label(form.roundNumber) }} {{ form_widget(form.roundNumber) }} {{ form_errors(form.roundNumber) }}
{{ form_label(form.startDate) }} {{ form_widget(form.startDate) }} {{ form_errors(form.startDate) }}
{{ form_label(form.endDate) }} {{ form_widget(form.endDate) }} {{ form_errors(form.endDate) }}
Cancel
{{ form_end(form) }}
Help

Round Naming:

  • Round 1, Round 2, etc.
  • Quarterfinals, Semifinals
  • Finals
{% if is_edit and round %}

Round Info:

  • Matches: {{ round.matches|length }}
{% if round.matches|length > 0 %}
Note: This round has {{ round.matches|length }} match(es). You cannot delete it without removing matches first.
{% endif %} {% endif %}
{% endblock %}