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.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/bn_django/git_browse/templates/git_browse/obj.html b/bn_django/git_browse/templates/git_browse/obj.html
index 0170eab..669091b 100644
--- a/bn_django/git_browse/templates/git_browse/obj.html
+++ b/bn_django/git_browse/templates/git_browse/obj.html
@@ -2,10 +2,14 @@
{% block gitbrowse %}
{% if contents %}
- <h3>Object sha1 hash: {{ hash }}<br />
- Size: {{ size|filesizeformat }}<br />
- Type: "{{ type }}"</h3>
- <pre>{{ contents }}</pre>
+ <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 %}