mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 11:10:57 +01:00
15 lines
629 B
Twig
15 lines
629 B
Twig
<div class="btn-group pull-left space-right">
|
|
<button class="btn dropdown-toggle" data-toggle="dropdown">browsing: <strong>{{ branch }}</strong> <span class="caret"></span></button>
|
|
<ul class="dropdown-menu">
|
|
<li class="dropdown-header">Branches</li>
|
|
{% for item in branches %}
|
|
<li><a href="{{ path('branch', {repo: repo, branch: item}) }}">{{ item }}</a></li>
|
|
{% endfor %}
|
|
{% if tags %}
|
|
<li class="dropdown-header">Tags</li>
|
|
{% for item in tags %}
|
|
<li><a href="{{ path('branch', {repo: repo, branch: item}) }}">{{ item }}</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
</div> |