mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
9 lines
269 B
HTML
9 lines
269 B
HTML
{% extends "includes/modal.html" %}
|
|
|
|
{% block modal_label %}(Détails){% endblock modal_label %}
|
|
{% block modal_body %}
|
|
<p>{{ product.description }}</p>
|
|
<p>{% if product.img %}
|
|
<img src="{{ product.img }}">
|
|
{% endif %}</p>
|
|
{% endblock modal_body %}
|