{% extends "base.html.twig" %} {% block body %}
Create tournament
{% if tournamentCount > 0 %}
There are {{ tournamentCount }} created tournaments.
{% for tournament in tournamentList %}
{{ tournament.getTitle() }}
{% endfor %} {% if page > 0 %} Previous {% endif %} {% if page + 1 < tournamentCount/tournamentPerPage and tournamentList.count() >= tournamentPerPage %} Next {% endif %} {% else %}
No tournaments have been created yet.
{% endif %}
{% endblock %}