Parent: [82d7f4] (diff)

Child: [67fd13] (diff)

Download this file

log.html    53 lines (52 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{% from 'jinja_master/lib.html' import email_gravatar with context %}
<div>
{% if show_paging %}
<div class="grid-19" style="clear:both">
{{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
</div>
{% endif %}
<table>
<thead>
<tr>
<th style="text-align:left">Commit</th>
<th style="text-align:left">Date</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
{% for commit in value %}
<tr>
<td>
{{commit.summary}}
<br/>
{% if commit.committed.email != commit.authored.email %}
{% if commit.committer_url %}
<a href="{{commit.committer_url}}">{{email_gravatar(commit.committed.email, title=commit.committed.name, size=16)}}
{{commit.committed.name}}</a>
pushed
{% else %}
{{email_gravatar(commit.committed.email, title=commit.committed.name, size=16)}} {{commit.committed.name}}
pushed
{% endif %}
{% endif %}
<a href="{{commit.url()}}">{{commit.shorthand_id()}}</a>
by
{{email_gravatar(commit.authored.email, title=commit.authored.name, size=16)}} {{commit.authored.name}}
</td>
<td>
{% if commit.committed.date %}{{h.ago(commit.committed.date)}}{% endif %}
</td>
<td style="text-align: right">
<a href="{{commit.url()}}tree/">Tree</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if show_paging %}
<div class="grid-19" style="clear:both">
{{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
{{widget.fields['page_size'].display(limit=limit)}}
</div>
{% endif %}
</div>