{% extends "base.html.twig" %} {% block body %}
Create tournament
{% if tournamentCount > 0 %}

There are {{ tournamentCount }} created tournaments.

{% for tournament in tournamentList %}
{{ tournament.getTitle() }}
{% endfor %} {% if tournamentCount/tournamentPerPage > page %} {% endif %} {% else %}
No tournaments have been created yet.
{% endif %}
{% endblock %}