progetto fatto precedentemente adattato al framework creato con il corso
filippo.bertilotti
2024-06-11 3f3e8c04d559f06de9e5452156d18c40919591a7
commit | author | age
15e03a 1 {% extends "base.mvc.php" %}
F 2
3 {% block title %}Product{% endblock %}
4
5 {% block body %}
6
7 <h1>{{ product["name"] }}</h1>
8 <p>{{ product["description"] }}</p>
9
10 <p><a href='/products/{{ product["id"] }}/edit' >Edit</a></p>
11 <p><a href='/products/{{ product["id"] }}/delete' >Delete</a></p>
12
13 {% endblock %}
14