{% 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 %}
DataTable with default features
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_OPERATOR_MANAGER') %}
{% endif %}
{% for operator in operators %}
ID
Name
Collaborator
Status
Action
{% endfor %}
{{ 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