diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-02-20 19:22:14 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-02-20 19:22:14 -0800 |
commit | 7adab6520975d9a8650a214ca519f2357707bd65 (patch) | |
tree | d04da2f2c0829198b1b02e87ca1de71ddb3f8b03 /bn_django/git_browse/templates/git_browse/base.html | |
parent | 3395a94951e7f9dce5c774b7fb38159052751869 (diff) | |
download | bnewnet-7adab6520975d9a8650a214ca519f2357707bd65.tar.gz bnewnet-7adab6520975d9a8650a214ca519f2357707bd65.zip |
git_browse: actually moved heads_table and tags_table to seperate files
created shortlog_table
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 %} |