{% extends 'base.html.twig' %} {% block body %}
{% if isLogged|default() and isLogged %} Dodaj wydarzenie {% endif %}
{% if events2 %} {% for event in events2 %} {% endfor %}
Nazwa Data Limit uczestników Status Zapisy Poziom zapisów Edytuj
{{ event['title'] }} {{ event['event_date']|date('d.m.Y') }} {{ event['limitation'] }} {% if event['event_status']==0 %}nieaktywny{% endif %} zapisy {% if event['open_for_booking'] %}aktywne{% else %}nieaktywne {% endif %} {{ event['howmanyBooked'] ? event['howmanyBooked'] : 0 }}/{{ event['limitation'] }} {% if isLogged|default() and isLogged %} Edytuj {% endif %}
{% else %}

Poczekalnia wydarzeń jest pusta.

{% endif %}
{% endblock %}