Merge
[catagits/Gitalist.git] / root / _shortlog.tt2
CommitLineData
f78e75d8 1<table class='shortlog listing'>
790ce598 2 <thead>
3 <tr>
7a88ffa4 4 <th>sha1</th>
5 <th>time</th>
6 <th>author</th>
7 <th>message</th>
8 <th>actions</th>
9 </tr>
10 </thead>
11
12 <tfoot>
13 <tr>
790ce598 14 <td>sha1</td>
15 <td>time</td>
16 <td>author</td>
17 <td>message</td>
18 <td>actions</td>
19 </tr>
7a88ffa4 20 </tfoot>
790ce598 21
22 <tbody>
23 [% FOREACH line IN log_lines %]
24 <tr>
f78e75d8 25 <td class='sha1' title='[% line.sha1 %]'>[% INCLUDE '_chroma_hash.tt2' sha1 = line.sha1.substr(0, 7) %]</td>
26 <td class='time-since' title='[% line.authored_time %]'>[% time_since(line.authored_time) %]</td>
1fd8159c 27 <td class='author'>[% line.author.name | html %]</td>
0ee97fec 28 <td>
fac828e0 29 [% short_cmt(line.comment) | html %]
1fd8159c 30 [% INCLUDE '_refs.tt2' object = line %]
0ee97fec 31 </td>
790ce598 32 <td class='action-list'>
f71a83ab 33 <a href="[% c.uri_for("commit", {h=line.sha1}) %]">commit</a>
34 <a href="[% c.uri_for("commitdiff", {h=line.sha1}) %]">commitdiff</a>
3114ceae 35 <a href="[% c.uri_for("tree", {h=line.sha1, hb=line.sha1}) %]">tree</a>
790ce598 36 </td>
37 </tr>
38 [% END %]
39 </tbody>
790ce598 40</table>