Files
WYGIWYH/app/templates/cotton/components/sidebar_menu_item.html
T
Herculino Trotta 9ade58a003 feat: another batch
2025-11-03 01:40:13 -03:00

14 lines
424 B
HTML

{% load active_link %}
<li>
<a href="{% url url %}"
class="lg:text-sm flex items-center no-underline p-2 rounded-box sidebar-item {% active_link views=active css_class="sidebar-active" %}"
{% if tooltip %}
data-tippy-placement="right"
data-tippy-content="{{ tooltip }}"
{% endif %}>
<i class="{{ icon }} fa-fw"></i>
<span
class="ms-3 font-medium">{{ title }}</span>
</a>
</li>