Files
allianceauth/allianceauth/menu/templates/menu/menu-notification-block.html
2025-09-11 12:52:48 +02:00

16 lines
542 B
HTML

{% load i18n %}
{% load navactive %}
{% load auth_notifications %}
<li class="nav-item" id="menu_item_notifications">
<a class="nav-link {% navactive request 'notifications:' %}" href="{% url 'notifications:list' %}">
{% with unread_count=request.user|user_unread_notification_count %}
<i class="fa-solid fa-bell me-2 fa-fw{% if unread_count %} text-danger{% endif %}"></i>
{% endwith %}
<span class="d-lg-none d-md-inline">
{% translate "Notifications" %}
</span>
</a>
</li>