vendor/kevinpapst/adminlte-bundle/Resources/views/Navbar/notifications.html.twig line 1

Open in your IDE?
  1. {% if notifications is not defined or adminlte_direct_include is defined %}
  2.     {% set notifications = null %}
  3.     {% set adminlte_notifications = adminlte_notifications() %}
  4.     {% if adminlte_notifications is not null %}
  5.         {% set notifications = adminlte_notifications.notifications %}
  6.         {% set total = adminlte_notifications.total %}
  7.     {% endif %}
  8. {% endif %}
  9. {% if notifications is defined and notifications is not null %}
  10. <li class="dropdown notifications-menu">
  11.     <a href="#" class="dropdown-toggle" data-toggle="dropdown">
  12.         <i class="far fa-bell"></i>
  13.         <span class="label label-warning">{{ total }}</span>
  14.     </a>
  15.     <ul class="dropdown-menu">
  16.         <li class="header">{{ 'You have %count% notifications'|trans({'%count%': total}, 'AdminLTEBundle') }}</li>
  17.         <li>
  18.             <ul class="menu">
  19.                 {% for notice in notifications %}
  20.                     <li>
  21.                         <a href="{{ path('adminlte_notification'|route_alias, {'id': notice.identifier}) }}">
  22.                             <i class="{{ notice.icon }} {{ notice.type|text_type }}"></i> {{ notice.message }}
  23.                         </a>
  24.                     </li>
  25.                 {% endfor %}
  26.             </ul>
  27.         </li>
  28.         <li class="footer"><a href="{{ path('adminlte_notifications'|route_alias) }}">{{'View all'|trans({}, 'AdminLTEBundle')}}</a></li>
  29.     </ul>
  30. </li>
  31. {% endif %}