diff options
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/base.html')
-rw-r--r-- | bn_django/git_browse/templates/git_browse/base.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bn_django/git_browse/templates/git_browse/base.html b/bn_django/git_browse/templates/git_browse/base.html index 93814c1..d23ab55 100644 --- a/bn_django/git_browse/templates/git_browse/base.html +++ b/bn_django/git_browse/templates/git_browse/base.html @@ -9,9 +9,11 @@ {% endblock %} {% block path %} - <a href="/code/">code</a> » +{{ block.super }} {% if object %} - <a href="/code/{{ object.slug }}/">{{ object.name }}</a> + <a href="/code/{{ object.slug }}/">{{ object.name }}</a> + [<a href="/code/{{ object.slug }}/tree/">browse</a>, + <a href="/code/{{ object.slug }}/log/">log</a>] {% endif %} {% endblock %} @@ -30,9 +32,6 @@ <a href="/code/{{ object.slug }}/tree/">browse tree</a> - <a href="/code/{{ object.slug }}/log">full log</a> </span> <br /> - {% if raw %} - <pre>{{raw}}</pre> - {% endif %} {% else %} <p>No such repository!</p> {% endif %} |