summaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/obj.html
blob: be0b556cd204e5ba0d108b46801bc090a89271fb (plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}