{% 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 %}
DataTable with default features
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_CANAL_MANAGER') %}
{% endif %}
{% for canal in canals %}
ID
Name
Price
Number Of Orders
Status
Action
{% endfor %}
{{ 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