templates/comun/notificacion/popup.html.twig line 1

Open in your IDE?
  1.     <li class="nav-item dropdown">
  2.         <a class="nav-icon dropdown-toggle" href="#" id="messagesDropdown" data-toggle="dropdown" aria-expanded="false">
  3.             <div class="position-relative">
  4. <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bell align-middle me-2"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
  5.     {% if cantidad!=0 %}<span class="indicator cantidadNoti">{{ cantidad }}</span>{% endif %}
  6.             </div>
  7.         </a>
  8.             <div class="dropdown-menu dropdown-menu-lg dropdown-menu-right py-0" aria-labelledby="messagesDropdown">
  9.                 <div class="dropdown-menu-header">
  10.                     <div class="position-relative">
  11.                         <span id="cantidad" class="cantidadNoti">{{ cantidad }}</span> {{ 'notificacion.nuevasMensaje'|trans }}
  12.                     </div>
  13.                 </div>
  14.                 <div class="list-group">
  15.                     
  16.                        {% for notificacion in notificaciones %}
  17.                     <span href="#" id="notificacion-{{notificacion.id}}" class="list-group-item">
  18.                         <div class="row g-0 align-items-center">
  19.                             <div class="col-2">
  20.                               <a id="leerNotificacion" href="leer" data-id="{{ notificacion.id }}" data-link="{{ path('app_comun_notificacion_leer',{'notificacion':notificacion.id}) }}"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-alert-circle text-danger"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>
  21.                            </a>
  22.                               </div>
  23.                             <div class="col-10 ps-2">
  24.                                 <div class="text-dark">{{ notificacion.tipo|trans}}</div>
  25.                                 <div class="text-muted small  mt-1">{{ app.request.locale=='eus' ? notificacion.textoeus : notificacion.textoes}}</div>
  26.                                 <div class="text-muted small mt-1">{{ notificacion.fecha ? notificacion.fecha|date('comun.fechaFormato'|trans) : '' }}</div>
  27.                         {#        <a id="leerNotificacion" href="leer" data-id="{{ notificacion.id }}" data-link="{{ path('app_comun_notificacion_leer',{'notificacion':notificacion.id}) }}">Leer</a>
  28.                             #}</div>
  29.                         </div>
  30.                     </span>
  31.                 {% endfor %}
  32.             </div>
  33.             <div class="dropdown-menu-footer">
  34.                 <a href="{{ path('app_comun_notificacion') }}" class="text-muted">{{ 'notificacion.verTodas'|trans }}</a>
  35.             </div>
  36.         </div>
  37.     </li>