15 lines
693 B
HTML
15 lines
693 B
HTML
{% load i18n %}
|
|
<form action="" hx-post="{% url 'web:add_cart_item' %}" hx-swap="none">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="product" value="{{ product.pk }}">
|
|
<input id="quantity" type="hidden" name="quantity" value="1">
|
|
<button class="w-full flex justify-center rounded-lg bg-primary-700 px-5 py-2.5
|
|
text-sm font-medium text-white hover:bg-primary-800 focus:outline-none focus:ring-4
|
|
focus:ring-primary-300 dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800
|
|
content-center items-center"
|
|
>
|
|
{% include 'components/icons/add_cart.svg' %}
|
|
{% translate 'Añadir al carrito' %}
|
|
</button>
|
|
</form>
|