{% extends "base.html.twig" %} {% block title %}SAINT-LEMAN ADMIN{% endblock %} {% block body %}

SAINT LEMAN: ADMIN

{% for message in app.flashes('message') %}
{{ message }}
{% endfor %}

Produit en ligne

{% for product in products%} {% endfor %}
Name Type Description Picture Prix/EURo Option
{{product.getName()}} {{product.getType()}} {{product.getDescription()}} {{product.getPrice()}}

Article en ligne

{% for article in articles%}

TITRE: {{article.getTitle()}}

CONTENU: {{article.getContent()}}

DATE PUBLIE: {{article.getCreatedAt()|date("d/m/y")}}

CATEGORIE: {{ article.getCategory().getTitle()}}

{% endfor %}
{% endblock body %}