<li class="dropdown" id="p3x-gitlist-branch-list">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> browsing: <strong>{{ branch }}</strong> <b class="caret"></b></a>
<div role="menu" class="dropdown-menu" id="p3x-gitlist-branch-list-dropdown-menu">
<form>
<input id="p3x-gitlist-branch-list-search" class="form-control" placeholder="Search" autofocus>
</form>
<div class="main-list">
<div class="p3x-list-item-header">
Branches
</div>
<div id="p3x-gitlist-list-branch">
<span class="list">
{% for item in branches %}
<div><a href="{{ path('branch', {repo: repo, branch: item}) }}"><span class="item">{{ item }}</span></a></div>
{% endfor %}
</span>
</div>
{% if tags %}
<div role="separator" class="divider"></div>
<div class="p3x-list-item-header">
Tags
</div>
<div id="p3x-gitlist-list-tag">
<span class="list">
{% for item in tags %}
<div><a href="{{ path('branch', {repo: repo, branch: item}) }}"><span class="item">{{ item }}</span></a></div>
{% endfor %}
</span>
</div>
{% endif %}
</div>
</div>
</li>