1
0
Fork 0
mirror of https://github.com/correl/codereview.git synced 2025-03-20 01:09:17 -09:00
codereview/templates/browser/navigation.html

9 lines
325 B
HTML

<h2><a href="{% url codereview.browser.views.log repository=repository.name %}">{{ repository.name }}</a></h2>
<ul class="tree">
{% for dir in navigation.dirs %}
<li class="dir">{{ dir }}</li>
{% endfor %}
{% for file in navigation.files %}
<li class="file">{{ file }}</li>
{% endfor %}
</ul>