aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/blob.html
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/blob.html')
-rw-r--r--bn_django/git_browse/templates/git_browse/blob.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/bn_django/git_browse/templates/git_browse/blob.html b/bn_django/git_browse/templates/git_browse/blob.html
deleted file mode 100644
index 853c034..0000000
--- a/bn_django/git_browse/templates/git_browse/blob.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends "git_browse/base.html" %}
-
-{% block gitbrowse %} {% if contents %}
- <h3>Blob sha1 hash</h3>
- {{ hash }}<br />
- <h3>Size</h3>
- {{ size|filesizeformat }}<br />
- <h3>Raw contents</h3>
- {% if pretty_contents %}
- <pre class="large">{{ pretty_diff }}</pre>
- {% else %}
- {% if contents %}
- <pre class="large">{{ contents|escape|wordwrap:80 }}</pre>
- {% else %}No contents{% endif %}
- {% endif %}
-{% else %}
- <h3>No such object: {{ hash }}</h3>
-{% endif %} {% endblock %}