mirror of
https://github.com/correl/codereview.git
synced 2024-12-18 11:06:10 +00:00
Committed missing navigation template
This commit is contained in:
parent
981150f901
commit
eafa3947b9
1 changed files with 9 additions and 0 deletions
9
templates/browser/navigation.html
Normal file
9
templates/browser/navigation.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<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>
|
Loading…
Reference in a new issue