summaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/obj.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-18 13:53:30 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-18 13:53:30 -0800
commit0c7c01d4ff1635cb7f04bed3d099b30b967f44bd (patch)
treef5a953687406c932573599b3de95d007148139cd /bn_django/git_browse/templates/git_browse/obj.html
parent9077a48cf9aeb06ddd751cfa7497fd636ed489a6 (diff)
downloadbnewnet-0c7c01d4ff1635cb7f04bed3d099b30b967f44bd.tar.gz
bnewnet-0c7c01d4ff1635cb7f04bed3d099b30b967f44bd.zip
renamed a few templates, further work on git_browsev0.0.0
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/obj.html')
-rw-r--r--bn_django/git_browse/templates/git_browse/obj.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/bn_django/git_browse/templates/git_browse/obj.html b/bn_django/git_browse/templates/git_browse/obj.html
new file mode 100644
index 0000000..be0b556
--- /dev/null
+++ b/bn_django/git_browse/templates/git_browse/obj.html
@@ -0,0 +1,12 @@
+{% extends "git_browse/base.html" %}
+
+{% block gitbrowse %}
+ {% if contents %}
+ <h3>Object sha1 hash: {{ hash }}<br />
+ Size: {{ size }} kB<br />
+ Type: "{{ type }}"</h3>
+ <pre>{{ contents }}</pre>
+ {% else %}
+ <h3>No such object: {{ hash }}</h3>
+ {% endif %}
+{% endblock %}