69c5766a76465a5bdbac876536aaa3b223dca18e
[catagits/Gitalist.git] / root / fragment / repository / heads.tt2
1 [% BLOCK repository_heads_headfoot %]
2 [% SET cell = type == 'head' ? 'th' : 'td' %]
3 <tr class="header">
4    <[% cell %]>HEAD</[% cell %]>
5    <[% cell %]>Last change</[% cell %]>
6    <[% cell %]>Branch</[% cell %]>
7    <[% cell %]>Actions</[% cell %]>
8 </tr>
9 [% END %]
10
11 <table class='[% action %] listing'>
12  <thead>[% PROCESS repository_heads_headfoot type = 'head' %]</thead>
13  <tbody>
14  [% FOREACH head IN heads %]
15   <tr>
16    <td class='sha1' title='[% head.sha1 %]'>[% INCLUDE 'inc/chroma_hash.tt2' sha1 = head.sha1.substr(0,7) %]</td>
17    <td class='time-since' title='[% head.last_change %]'>[% time_since(head.last_change) %]</td>
18    <td class='head[% head.sha1 == HEAD ? ' current' : '' %]'>[% head.name %]</td>
19    <td class='action-list'>[%# FIXME %]
20      <a href="[% c.uri_for_action('/ref/shortlog', [Repository.name, head.name]) %]" title="Short log" class="button shortlog">shortlog</a>
21      <a href="[% c.uri_for_action('/ref/longlog', [Repository.name, head.name]) %]" title="Long log" class="button longlog">log</a>
22      <a href="[% c.uri_for_action('/ref/tree', [Repository.name, head.name]) %]" title="Tree" class="button tree">tree</a>
23    </td>
24   </tr>
25  [% END %]
26  </tbody>
27 </table>