{% extends 'base_frontend.html.twig' %} {% block title %} Détail Article {% endblock %} {% block content %} {% include 'frontend/basic/alert.html.twig' %}

{{ article.getTitre() }}

Exemplaire(s) en Stock:
{{ article.getLimitQuantite() }}
{{ article.getPrixPromo() }} DT {{ article.getPrixMarche() }} DT
Qty :
{{ article.getDescription()|raw }}


{% set comments = article.getCommentArticles() %} {% include 'frontend/comment/comments.html.twig' %} {{ render(controller( 'App\\Controller\\Frontend\\CommentController::article_add', { 'id': article.getId() } )) }} {% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('app_frontend_article_service') }} {% endblock %}