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

{% block gitbrowse %}
{% if log_objs %}
    <h3>Full Log</h3><br />
    {% for item in log_objs %}
       <hr>
       <b>Hash: </b>
       <a href="/code/{{object.slug}}/commit/{{ item.hash }}/">
        <span class="hash">{{ item.hash }}</span></a>
       <br /><b>Author: </b>{{ item.author }}
       <br /><b>Date: </b>{{ item.date }}
       <br /><b>Comment: </b>
       <pre class="large">{{ item.comment|escape|wordwrap:80 }}</pre>
    {% endfor %}
{% endif %}
{% endblock %}