Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
proc
/
212
/
task
/
212
/
root
/
proc
/
70528
/
cwd
/
templates
/
back
/
product
/
//proc/212/root/proc/212/task/212/root/proc/70528/cwd/templates/back/product/archived.html.twig
{% extends "back/layout.html.twig" %} {% block content %} <h1>Produits archivés</h1> <table class="datatable"> <thead> <tr> <th>Image</th> <th>Nom</th> <th>Description</th> <th>Actions</th> </tr> </thead> <tbody> {% for product in products %} <tr> <td><img src="{{ vich_uploader_asset(product, "imageFile") }}" alt="{{ product.name }}" style="width: 100px; height: 100px; object-fit: contain"></td> <td>{{ product.name }}</td> <td>{{ product.description }}</td> <td> <a href="{{ path("back_product_unarchive", { id : product.id }) }}" class="btn btn-primary"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-folder-minus" viewbox="0 0 16 16"> <path d="m.5 3 .04.87a1.99 1.99 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2zm5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19c-.24 0-.47.042-.683.12L1.5 2.98a1 1 0 0 1 1-.98h3.672z"/> <path d="M11 11.5a.5.5 0 0 1 .5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5z"/> </svg> Désarchiver </a> </td> </tr> {% endfor %} </tbody> </table> {% endblock %}