{% extends 'base.html.twig' %}
{% set titleName = "Live - Orders" %}
{% 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
{% set index = 1 %}
{% for order in orders %}
Num
Live
Full Name
Phone
Shipping
Created At
Canal
Tentative
Status
Action
{% set index = index + 1 %}
{% endfor %}
{{ index }}
{{ order.live.numberOfLot }}
{{ order.fullName }}
{{ order.phone }}
{{ order.shippingPrice }}
{{ order.createdAt|date("d/m/Y H:i") }}
{{ order.canal.name is defined ? order.canal.name :'' }}
{{ order.nbrTentative }}
{{ order.status.name }}
{% if order.status.category < 4 %}
{% endif %}
Num
Live
Full Name
Phone
Shipping
Created At
Canal
Tentative
Status
Action