{% extends 'base.html.twig' %} {% block title %}Oeuvres{% endblock %} {% block body %}

Oeuvres

Id {{ oeuvre.id }}
Titre {{ oeuvre.titre }}
Prix {{ oeuvre.prix }}
Image {{ oeuvre.image }}
Stock {{ oeuvre.stock }}
description {{ oeuvre.description }}
matiere {% if oeuvre.matieres|length > 0 %} {% for matieres in oeuvre.matieres %} {{ matieres.nom|capitalize }}{% if not loop.last %},{% endif %} {% endfor %} {% else %} N.R {% endif %}
dimention {{ oeuvre.dimention }}
back to list edit {{ include('admin_oeuvre/_delete_form.html.twig') }}
{% endblock %}