17 lines
484 B
HTML
17 lines
484 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 }}">
|
|
|
|
<div class="flex">
|
|
<input class="input-number"
|
|
id="quantity" aria-label="quantity" type="number" min="1" max="10" name="quantity" value="1">
|
|
<button class="button-primary"
|
|
>
|
|
{% include 'components/icons/add_cart.svg' %}
|
|
{% translate 'Añadir al carrito' %}
|
|
</button>
|
|
</div>
|
|
|
|
</form>
|