{% extends 'base.html.twig' %} {% set titleName = "Operators" %} {% 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_OPERATOR_MANAGER') %} {% endif %}
{% for operator in operators %} {% endfor %}
ID Name Collaborator Status Action
{{ operator.id }} {{ operator.name }} {% if operator.collaborator is not null %} {{ operator.collaborator.firstName }} {{ operator.collaborator.lastName }} {% endif %} {{ operator.status == 1 ? 'Enabled' : 'Disabled' }} View {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_OPERATOR_MANAGER') %} {# Delete #} {% endif %}
ID Name Collaborator Status Action
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_OPERATOR_MANAGER') %} {% set show = false %} {% if show == true %} {% endif %} {% endif %} {% endblock %} {% block script %} {% endblock %}