{% extends 'base.html.twig' %} {% set titleName = "Canals" %} {% 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_CANAL_MANAGER') %} {% endif %}
{% for canal in canals %} {% endfor %}
ID Name Price Number Of Orders Status Action
{{ canal.id }} {{ canal.name }} {{ canal.price }} {{ canal.orders|length }} {{ canal.status == 1 ? 'Enabled' : 'Disabled' }} {# View #} {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_CANAL_MANAGER') %} {# Delete #} {% endif %}
ID Name Price Number Of Orders Status Action
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_CANAL_MANAGER') %} {% endif %} {% endblock %} {% block script %} {% endblock %}