fix: huge refactor

This commit is contained in:
2026-03-17 14:03:51 +01:00
parent be87ab4fa1
commit 71b02610d1
50 changed files with 2763 additions and 3516 deletions
@@ -1,28 +1,28 @@
{% load i18n %}
<ul class="p-2 text-start text-sm font-medium text-gray-900 dark:text-white">
<ul class="p-2 text-start text-sm font-medium ">
<li>
<a href="{% url 'web:my_account' %}" title=""
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-600">
<a href="{% url 'users:my_account' %}" title=""
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover: :">
{% translate 'Mi cuenta' %}
</a>
</li>
<li>
<a href="{% url 'web:orders' %}" title=""
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-600">
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover: :">
{% translate 'Mis pedidos' %}
</a>
</li>
<li>
<a href="{% url 'web:wishlist' %}" title=""
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-600">
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover: :">
{% translate 'Lista de deseados' %}
</a>
</li>
</ul>
<div class="p-2 text-sm font-medium text-gray-900 dark:text-white">
<a href="{% url 'web:logout' %}" title=""
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-600">
<div class="p-2 text-sm font-medium ">
<a href="{% url 'users:logout' %}" title=""
class="inline-flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm hover: :">
{% translate 'Cerrar sesión' %}
</a>
</div>