{% block body %}

Listes des tickets

{% for ticket in tickets %} {% else %} {% endfor %}
Id Urgence Status Date de création Technicien Description actions
{{ ticket.id }} {{ ticket.importance }} {{ ticket.status }} {{ ticket.date ? ticket.date|date('Y-m-d H:i:s') : '' }} {{ ticket.technicien }} {{ ticket.description }} {% if app.user != null and 'ROLE_DEV' in app.user.roles %} Voir Modifier En cours Terminée {% endif %} {% for item in ticket.pj %} {{ item }} {% endfor %}
no records found
{% if app.user != null and 'ROLE_DEV' in app.user.roles %} Create new {% endif %} {% endblock %}