{% extends '::base.html.twig' %} {% block body -%}

Speech list

{% for entity in entities %} {% endfor %}
Id Name Title Description Address Isactive Isallday Startdate Enddate Createdat Updatedat Actions
{{ entity.id }} {{ entity.name }} {{ entity.title }} {{ entity.description }} {{ entity.address }} {{ entity.isActive }} {{ entity.isAllDay }} {% if entity.startDate %}{{ entity.startDate|date('Y-m-d H:i:s') }}{% endif %} {% if entity.endDate %}{{ entity.endDate|date('Y-m-d H:i:s') }}{% endif %} {% if entity.createdAt %}{{ entity.createdAt|date('Y-m-d H:i:s') }}{% endif %} {% if entity.updatedAt %}{{ entity.updatedAt|date('Y-m-d H:i:s') }}{% endif %}
{% endblock %}