add buttons ot edit and delete in recipe view

This commit is contained in:
Thomas Rubini 2023-01-26 16:19:00 +01:00
parent f6a6ebb40f
commit 85a7ba34f3
No known key found for this signature in database
GPG Key ID: C7D287C8C1CAC373

View File

@ -44,6 +44,11 @@ $O_recipe = $A_view["RECIPE"];
}
?>
<section class="buttonsEditRecipe">
<a href="/recipe/edit/<?= $O_recipe->I_ID ?>">Modifier la recette</a>
<a href="/recipe/delete/<?= $O_recipe->I_ID ?>">Supprimer la recette</a>
</section>
<?php
View::show("appreciations/view_all", $A_view)
?>