mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-19 15:21:31 +02:00
15 lines
588 B
HTML
15 lines
588 B
HTML
{% load active_link %}
|
|
<li>
|
|
<a href="{% url url %}"
|
|
class="tw:lg:text-sm tw:flex tw:items-center tw:no-underline tw:p-2 tw:rounded-3xl 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="tw:ms-3 tw:font-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>
|