This commit is contained in:
Diego Calvo
2021-03-30 09:56:54 +02:00
parent ca3566121e
commit aa14de0645
3 changed files with 64 additions and 52 deletions

View File

@@ -488,12 +488,11 @@
<br /> <br />
Por favor, verifica tu Por favor, verifica tu
registro en LaTiendaCOOP registro en LaTiendaCOOP
haciendo click en el haciendo click <a href="https://{{ domain }}{% url
siguiente enlace: 'activate_user' uidb64=uid
token=token %}">AQUÍ</a>
<br /> <br />
http://{{ domain }}{% url
'activate_user' uidb64=uid
token=token %}
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -194,7 +194,7 @@
target="_blank" target="_blank"
> >
<img <img
alt="" alt="Logo de Latienda.coop"
height="auto" height="auto"
width="25" width="25"
align="left" align="left"
@@ -426,7 +426,10 @@
<tbody> <tbody>
<tr> <tr>
<td style="width: 250px"> <td style="width: 250px">
<a href="[ENLACE A PRODUCTO]" target="_blank"> <a
href="https://latienda.coop/productos/{{product.id}}"
target="_blank"
>
<img <img
alt="" alt=""
height="auto" height="auto"
@@ -438,7 +441,7 @@
{% {%
else else
%} %}
src="DEFAULT_PRODUCT_IMAGE" src="https://latienda.coop/_nuxt/img/latienda-product-default.0b2c2e0.svg"
{% {%
endif endif
%} %}
@@ -482,29 +485,19 @@
color: #374493; color: #374493;
" "
> >
<span <a
href="https://latienda.coop/productos/{{product.id}}" href="https://latienda.coop/productos/{{product.id}}"
style="font-size: 15px; display: inline-block" target="_blank"
>Enlace al producto</span
>
<br />
<span
style="
font-size: 15px;
display: inline-block;
margin-top: 5px;
"
>Nombre del producto</span
>
<br />
<span
style="
font-size: 15px;
display: inline-block;
margin-top: 5px;
"
>{{product.name}}</span
> >
<span
style="
font-size: 15px;
display: inline-block;
margin-top: 5px;
"
>{{product.name}}</span
>
</a>
<br /> <br />
{% if product.sku %} {% if product.sku %}
<span <span
@@ -517,6 +510,7 @@
> >
{% endif %} {% endif %}
<br /> <br />
{% if product.price %}
<span <span
style=" style="
font-size: 15px; font-size: 15px;
@@ -526,6 +520,17 @@
" "
>{{product.price}}€</span >{{product.price}}€</span
> >
{% else %}
<span
style="
font-size: 15px;
font-weight: bold;
display: inline-block;
margin-top: 5px;
"
>Precio a consultar</span
>
{% endif %}
<br /> <br />
</div> </div>
</td> </td>
@@ -735,7 +740,7 @@
{% {%
else else
%} %}
src="DEFAULT_COOP_IMAGE" src="https://latienda.coop/_nuxt/img/latienda-product-default.0b2c2e0.svg"
{% {%
endif endif
%} %}

View File

@@ -437,7 +437,7 @@
{% {%
else else
%} %}
src="DEFAULT_PRODUCT_IMAGE" src="https://latienda.coop/_nuxt/img/latienda-product-default.0b2c2e0.svg"
{% {%
endif endif
%} %}
@@ -481,48 +481,56 @@
color: #374493; color: #374493;
" "
> >
<span <a
href="https://latienda.coop/productos/{{product.id}}" href="https://latienda.coop/productos/{{product.id}}"
style="font-size: 15px; display: inline-block" target="_blank"
>Enlace al producto</span
>
<br />
<span
style="
font-size: 15px;
display: inline-block;
margin-top: 5px;
"
>Nombre del producto</span
>
<br />
<span
style="
font-size: 15px;
display: inline-block;
margin-top: 5px;
"
>{{product.name}}</span
> >
<span
style="
font-size: 15px;
display: inline-block;
margin-top: 5px;
font-family: inherit;
"
>{{product.name}}</span
>
</a>
<br /> <br />
{% if product.sku %}
<span <span
style=" style="
font-size: 15px; font-size: 15px;
display: inline-block; display: inline-block;
margin-top: 5px; margin-top: 5px;
font-family: inherit;
" "
>{{product.sku}}</span >{{product.sku}}</span
> >
{% endif %}
<br /> <br />
{% if product.price %}
<span <span
style=" style="
font-size: 15px; font-size: 15px;
font-weight: bold; font-weight: bold;
display: inline-block; display: inline-block;
margin-top: 5px; margin-top: 5px;
font-family: inherit;
" "
>{{product.price}}€</span >{{product.price}}€</span
> >
{% else %}
<span
style="
font-size: 15px;
font-weight: bold;
display: inline-block;
margin-top: 5px;
font-family: inherit;
"
>Precio a consultar</span
>
{% endif %}
<br /> <br />
</div> </div>
</td> </td>