mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-31 14:33:39 +02:00
15 lines
579 B
HTML
15 lines
579 B
HTML
{% load active_link %}
|
|
<li>
|
|
<a href="{% url url %}"
|
|
class="tw:lg:text-sm d-flex align-items-center text-decoration-none p-2 rounded-3 sidebar-item {% active_link views=active css_class="sidebar-active" %}"
|
|
{% if tooltip %}
|
|
data-bs-placement="right"
|
|
data-bs-toggle="tooltip"
|
|
data-bs-title="{{ tooltip }}"
|
|
{% endif %}>
|
|
<i class="{{ icon }} fa-fw"></i>
|
|
<span
|
|
class="ms-3 fw-medium tw:lg:group-hover:truncate tw:lg:group-focus:truncate tw:lg:group-hover:text-ellipsis tw:lg:group-focus:text-ellipsis">{{ title }}</span>
|
|
</a>
|
|
</li>
|