mirror of
https://github.com/ae-utbm/sith.git
synced 2024-12-23 00:01:16 +00:00
bux fixing on new eboutic (#493)
- les alt des images des produits n'étaient pas bonnes - les noms de produits avec une apostrophe dedans n'étaient pas cliquables
This commit is contained in:
parent
1281104d96
commit
96510b270d
@ -102,10 +102,10 @@
|
|||||||
<div class="product-group">
|
<div class="product-group">
|
||||||
{% for p in items %}
|
{% for p in items %}
|
||||||
<button class="product-button"
|
<button class="product-button"
|
||||||
@click="add_from_catalog({{ p.id }}, '{{ p.name }}', {{ p.selling_price }})">
|
@click='add_from_catalog({{ p.id }}, {{ p.name|tojson }}, {{ p.selling_price }})'>
|
||||||
{% if p.icon %}
|
{% if p.icon %}
|
||||||
<img src="{{ p.icon.url }}" alt="image de {{ p.product_name }}" width="40px"
|
<img src="{{ p.icon.url }}" alt="image de {{ p.name }}"
|
||||||
height="40px">
|
width="40px" height="40px">
|
||||||
{% else %}
|
{% else %}
|
||||||
<i class="fa fa-2x fa-picture-o"></i>
|
<i class="fa fa-2x fa-picture-o"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user