diff --git a/web/templates/components/cart/cart_navbar.html b/web/templates/components/cart/cart_navbar.html
index bb44bd8..1622126 100644
--- a/web/templates/components/cart/cart_navbar.html
+++ b/web/templates/components/cart/cart_navbar.html
@@ -1,81 +1,75 @@
{% load i18n %}
- {% include 'components/icons/cart.svg' %}
-
+ hx-on:click="htmx.toggleClass(htmx.find('#myCartDropdown1'), 'hidden'); htmx.addClass(htmx.find('#userDropdown1'), 'hidden')"
+ id="myCartDropdownButton1"
+ data-dropdown-toggle="myCartDropdown1" type="button"
+ class="inline-flex items-center rounded-lg justify-center p-2 hover:bg-gray-100 dark:hover:bg-gray-700 text-sm font-medium leading-none text-gray-900 dark:text-white">
+ {% include 'components/icons/cart.svg' %}
+
{% blocktranslate %}
Carrito
{% endblocktranslate %}
- ({{ cart.items.count }})
+ ({{ cart.items.count }})
-
- {% if cart.items.count == 0 %}
-
No hay nada en el carrito
- {% endif %}
+
+ {% if cart.items.count == 0 %}
+
No hay nada en el carrito
+ {% endif %}
- {% for cart_item in cart.items.all %}
-
-
- {{ cart_item.product.name }}
-
+ {% for cart_item in cart.items.all %}
+
+
+ {{ cart_item.product.name }}
+
-
-
- {{ cart_item.product.price.price_with_tax }}€
-
+
+
+ {{ cart_item.product.price.price_with_tax }}€
+
-
+
+ {% csrf_token %}
+ {% translate 'Quitar' %}
+ {% include 'components/icons/remove.svg' %}
+
+
-
+ >
+ {% translate 'Quitar del carrito' %}
+
+
+
-
- {% endfor %}
-
+ {% endfor %}
+
- {% if cart.items.count > 0 %}
+ {% if cart.items.count > 0 %}
{% translate 'Ver carrito' %}
-
{% translate 'Comprar' %}
-
- {% endif %}
+ {% endif %}
\ No newline at end of file
diff --git a/web/templates/users/user_details.html b/web/templates/users/user_details.html
index 946f8fc..2f9c35a 100644
--- a/web/templates/users/user_details.html
+++ b/web/templates/users/user_details.html
@@ -17,7 +17,7 @@
-
+
@@ -29,7 +29,7 @@
{% if customer_addresses.count == 0 %}
- No hay ninguna dirección
+ {% translate 'No hay ninguna dirección' %}
{% endif %}
{% for address in customer_addresses %}