{# empty Twig template #} {% extends 'baseRestaurateur.html.twig' %} {% block title %} Detail d'un plat {% endblock %} {% block body %}

Plat : {{ unPlat.nomPlat }}

Prix Fournisseur : {{ unPlat.prixFournisseurPlat }}

Prix Client : {% if unPlat.prixClientPlat is not null %}{{ unPlat.prixClientPlat }}{% else %}Non spécifié{% endif %}

Plat Visible : {% if unPlat.platVisible %}Oui{% else %}Non{% endif %}

Photo du Plat : {% if unPlat.photoPlat is not null %}{{ unPlat.photoPlat }}{% else %}Non disponible{% endif %}

Description : {% if unPlat.descriptionPlat is not null %}{{ unPlat.descriptionPlat }}{% else %}Aucune description{% endif %}

Type du plat : {% if unPlat.leTypePlat is not null %}{{ unPlat.leTypePlat }}{% else %}Aucun type pour ce plat{% endif %}

{% endblock %}