aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/obj.html
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/obj.html')
-rw-r--r--bn_django/git_browse/templates/git_browse/obj.html16
1 files changed, 0 insertions, 16 deletions
diff --git a/bn_django/git_browse/templates/git_browse/obj.html b/bn_django/git_browse/templates/git_browse/obj.html
deleted file mode 100644
index 669091b..0000000
--- a/bn_django/git_browse/templates/git_browse/obj.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% extends "git_browse/base.html" %}
-
-{% block gitbrowse %}
- {% if contents %}
- <h3>Object sha1 hash</h3>
- {{ hash }}<br />
- <h3>Size</h3>
- {{ size|filesizeformat }}<br />
- <h3>Type</h3>
- "{{ type }}"
- <h3>Raw Description</h3>
- <pre class="large">{{ contents }}</pre>
- {% else %}
- <h3>No such object: {{ hash }}</h3>
- {% endif %}
-{% endblock %}