mirror of
https://github.com/correl/codereview.git
synced 2024-11-27 19:19:50 +00:00
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
{% load vcs %}
|
|
<h2><a href="{% url codereview.browser.views.log repository=repository.name %}?c={{ ref }}">{{ repository.name }}</a></h2>
|
|
<h3>Branches</h3>
|
|
<ul>
|
|
{% for branch, commit in repo.branches.items %}
|
|
<li>
|
|
{% if ref == branch or ref == commit.id %}
|
|
<strong>{{ branch }}</strong>
|
|
{% else %}
|
|
<a href="{% url codereview.browser.views.log repository=repository.name %}?c={{branch}}">{{ branch }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h3>Browse</h3>
|
|
{% if path|dirname %}
|
|
<strong>{{ path|dirname }}/</strong><br />
|
|
<a href="{% url codereview.browser.views.log repository=repository.name path=path|dirname %}?c={{ ref }}">Up one</a>
|
|
{% endif %}
|
|
<ul class="tree">
|
|
{% for dir in navigation.dirs %}
|
|
<li class="dir">
|
|
<a href="{% url codereview.browser.views.log repository=repository.name path=dir %}/?c={{ ref }}">{{ dir|basename }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% for file in navigation.files %}
|
|
<li class="file">
|
|
{% if file == path %}
|
|
<strong>{{ file|basename }}</strong>
|
|
{% else %}
|
|
<a href="{% url codereview.browser.views.log repository=repository.name path=file %}?c={{ ref }}">{{ file|basename }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|