{% extends 'body.html.twig' %} {% block title %} {{ parent() }} - Liste des opérations {% endblock %} {% block page %}
Liste des opérations Créer une opération
{% for operation in operationsFabrication %} {% endfor %}
OF Opération Planifiée Date début plannifiée Publiée Date contrainte matière Actions
{{ operation.ordreFabrication.code }} {{ operation.numero }} {% if operation.dateDebut is not null %}{% else %}{% endif %} {% if operation.dateDebut is not null %}{{ operation.dateDebut | date("d/m/Y H:i") }}{% endif %} {% if operation.publiee == true %}{% else %}{% endif %} {% if operation.dateContrainteMatiere is not null %}{{ operation.dateContrainteMatiere | date("d/m/Y") }}{% endif %}
{% endblock page %} {% block javascripts %} {{ parent() }} {% endblock %}