{% extends 'base_backend_admin.html.twig' %} {% block title %} Article {% endblock %} {% block content %}

Article

{% include 'backend_admin/basic/notice.html.twig' %}
Liste des articles
{% for article in articles %} {% endfor %}
# Titre Société Date Ajoute Limitation Activer Détail
{{ article.getId() }} {{ article.getTitre()}} {{ article.getSociete().getNom() }} {{ article.getDateAdd()|date("d/m/Y")}} {% if article.getLimitType() == 0 %} Par Date: {{ article.getLimitDate()|date("d/m/Y") }} {% elseif article.getLimitType() == 1 %} Par Quantité: {{ article.getLimitQuantite() }} {% endif %} {% if article.isActive() %} {% else %} {% endif %} {% if article.isActive() %} {% elseif (article.isActive() == false) and (article.getImageDefault() != '') %} {% endif %}
{% endblock %}