summaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/full_log.html
blob: a467ae839060e73bba3d26157eacb6438e6cfa05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "git_browse/base.html" %}

{% block gitbrowse %}
{% if log_objs %}
    <h3>Full Log</h3><br />
    {% for item in log_objs %}
       <hr>
       <b>Hash: </b>{{ item.hash }}
       <br /><b>Author: </b>{{ item.author }}
       <br /><b>Date: </b>{{ item.date }}
       <br /><b>Comment: </b><pre>{{ item.comment }}</pre>
    {% endfor %}
{% endif %}
{% endblock %}