<li class="nav-item dropdown">
<a class="nav-icon dropdown-toggle" href="#" id="messagesDropdown" data-toggle="dropdown" aria-expanded="false">
<div class="position-relative">
<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>
{% if cantidad!=0 %}<span class="indicator cantidadNoti">{{ cantidad }}</span>{% endif %}
</div>
</a>
<div class="dropdown-menu dropdown-menu-lg dropdown-menu-right py-0" aria-labelledby="messagesDropdown">
<div class="dropdown-menu-header">
<div class="position-relative">
<span id="cantidad" class="cantidadNoti">{{ cantidad }}</span> {{ 'notificacion.nuevasMensaje'|trans }}
</div>
</div>
<div class="list-group">
{% for notificacion in notificaciones %}
<span href="#" id="notificacion-{{notificacion.id}}" class="list-group-item">
<div class="row g-0 align-items-center">
<div class="col-2">
<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>
</a>
</div>
<div class="col-10 ps-2">
<div class="text-dark">{{ notificacion.tipo|trans}}</div>
<div class="text-muted small mt-1">{{ app.request.locale=='eus' ? notificacion.textoeus : notificacion.textoes}}</div>
<div class="text-muted small mt-1">{{ notificacion.fecha ? notificacion.fecha|date('comun.fechaFormato'|trans) : '' }}</div>
{# <a id="leerNotificacion" href="leer" data-id="{{ notificacion.id }}" data-link="{{ path('app_comun_notificacion_leer',{'notificacion':notificacion.id}) }}">Leer</a>
#}</div>
</div>
</span>
{% endfor %}
</div>
<div class="dropdown-menu-footer">
<a href="{{ path('app_comun_notificacion') }}" class="text-muted">{{ 'notificacion.verTodas'|trans }}</a>
</div>
</div>
</li>