{% if c.project %}
{% for s in c.project.grouped_navbar_entries() %}
<a href="{{s.url}}" class="ui-icon-{{s.ui_icon or 'admin'}}
{% if s.label == 'Home' %}
{% set url_length = s.url|length %}
{% if request.url.rfind(s.url, -url_length) != -1 %}
active
{#
<span class="diamond"></span>
#}
{% endif %}
{% else %}
{% if s.matches_url(request) or c.project.neighborhood.url()+'_admin' in request.upath_info %}
active
{#
<span class="diamond"></span>
#}
{% endif %}
{% endif %}">
{{s.label}}
{% set grouped_tool_count = s.matching_urls|length %}
{% if grouped_tool_count %}
<span class="tool-count">{{grouped_tool_count}}</span>
{% endif %}
</a>
{% endfor %}
<div style="clear:both"></div>
{% endif %}