<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-bell-o"></i>
    <span class="label label-warning">
        {% if alerts is not null %}
            {{ alerts|length }}
        {% endif %}
    </span>
</a>
<ul class="dropdown-menu">
    <li class="header">Tienes {% if alerts is not null %}
            {{ alerts|length }}
        {% endif %} notificaciones
    </li>
    <li>
        <!-- inner menu: contains the actual data -->

        <ul class="menu">
            {% if alerts is not null %}
                {% for item in alerts %}
                    <li>
                        <a href="#">
                            <i class="fa fa-circle {{ item.prioridad }}"></i>
                            {{ item.mensaje }}
                        </a>
                    </li>
                {% endfor %}

            {% endif %}
        </ul>

    </li>
    <li class="footer">
        <a href="#">Ver todos</a>
    </li>
</ul>