notification_bell.html 322 B

12345678910
  1. {% if notifications %}
  2. <span class="text-primary" id="notifications-alert" hx-swap-oob="true">
  3. <i class="mdi mdi-bell-ring"></i>
  4. <span class="badge bg-red"></span>
  5. </span>
  6. {% else %}
  7. <span class="text-muted" id="notifications-alert" hx-swap-oob="true">
  8. <i class="mdi mdi-bell"></i>
  9. </span>
  10. {% endif %}