{% extends 'base.html.twig' %} {% set titleName = "Visitors" %} {% block title %} POWER DATA | {{titleName}} {% endblock %} {% block page %}{{titleName}}{% endblock %} {% block breadcrumb %} {% if titleName != "Home" %} {{titleName}} {% endif %} {% endblock %} {% block css %} {% endblock %} {% block content %}
{% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %}

DataTable with default features

{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_BREVO_VISITOR_MANAGER') %} {% endif %}
{% for visitor in visitors %} {% endfor %}
ID Name Nbr Command Source Phone Conversations Contact Created At Action
{{ visitor.id }} {{ visitor.fullName }} {{ visitor.nbrCommand }} {{ visitor.source }} {{ visitor.phone }} {{ visitor.threadId }} {{ visitor.contactId }} {{ visitor.createdAt|date("d/m/Y") }} {# View #} {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_BREVO_VISITOR_MANAGER') %} {# Delete #} {% endif %}
ID Name Nbr Command Source Phone Conversations Contact Created At Action
{% endblock %} {% block script %} {% endblock %}