{% extends 'base.html.twig' %} {% block title %}Support index{% endblock %} {% block body %}

Support Manager

{% if is_granted('ROLE_ADMIN') %} Create New Support {% endif %}
{% for support in supports %} {% endfor %}
Label Date Created Date Updated Action
{{ support.label }} {{ support.createdAt ? support.createdAt|date('Y-m-d H:i:s') : '' }} {{ support.updatedAt ? support.updatedAt|date('Y-m-d H:i:s') : '' }}
Show {% if is_granted('ROLE_ADMIN') %} Edit {% endif %}
{% endblock %}