more design changes
[catagits/Gitalist.git] / root / fragment / repository / shortlog.tt2
CommitLineData
af8c29dd 1[% BLOCK shortlog_table_headfoot %]
10938267 2[% SET cell = type == 'head' ? 'th' : 'td' %]
af8c29dd 3<tr>
82f94bce 4 <[% cell %]>ID (sha1)</[% cell %]>
eab82ed1 5 <[% cell %]>Last change</[% cell %]>
82f94bce 6 <[% cell %]>Message</[% cell %]>
eab82ed1 7 <[% cell %]>By</[% cell %]>
82f94bce 8 <[% cell %]>Actions</[% cell %]>
af8c29dd 9</tr>
10[% END %]
7e8a7295 11
82f94bce 12
13
eab82ed1 14<table class='listing'>
82f94bce 15<thead>[% PROCESS shortlog_table_headfoot type = 'head' %]</thead>
16<tbody>
7e8a7295 17 [% FOREACH line IN log_lines %]
82f94bce 18 <tr [% "class='invert'" IF loop.count % 2 %]>
19 <td class='sha1' title='[% line.sha1 %]'>[% INCLUDE 'inc/chroma_hash.tt2' sha1 = line.sha1.substr(0, 7) %]</td>
20 <td class='time-since' title='[% line.authored_time %]'>[% time_since(line.authored_time) %]</td>
21 <td>
22 [% short_cmt(line.comment) | html %]
23 [% INCLUDE '_refs.tt2' object = line %]
24 </td>
25 <td class='author'><img src="[% uri_for_gravatar(line.author.email, 21) %]" />[% line.author.name | html %]</td>
26 <td class='action-list'>
27 <a href="[% c.uri_for_action("/ref/commit", [Repository.name, line.sha1]) %]" title="Commit details" class="button commit">commit</a>
28 <a href="[% c.uri_for_action("/ref/diff_fancy", [Repository.name, line.sha1]) %]" title="Commit difference" class="button diff">commitdiff</a>
29 <a href="[% c.uri_for_action("/ref/tree", [Repository.name, line.sha1]) %]" title="Tree" class="button tree">tree</a>
30 </td>
31</tr>
32[% END %]
33</tbody>
34</table>
35
36[% INCLUDE 'inc/log_pager.tt2' %]