afcc4fd346fb6f971995e9de8204a242abbcdc5a
[catagits/Gitalist.git] / root / fragment / collectionofrepositories.tt2
1 <tbody>
2 [% FOR p IN repositories %]
3         [%- repos_link = c.uri_for_action('/repository/summary', [p.name]) -%]
4 <tr [% "class='invert'" IF loop.count % 2 %]>
5     <td>[% loop.count %]</td>
6         <td><a href="[% repos_link %]/shortlog"><strong>[% p.name %]</strong></a></td>
7     <td><span title="[% p.description %]">[% abridged_description(p.description) %]</span></td>
8     <td class="time-since">[% time_since(p.last_change) %]</td>
9     <td>[% p.owner %]</td>
10     <td class="action-list">
11         <a href="[% c.uri_for_action('/repository/shortlog', [p.name]) %]" title="Short log" class="button shortlog">short log</a>
12         <a href="[% c.uri_for_action('/repository/longlog', [p.name]) %]" title="Long log" class="button longlog">long log</a>
13         <a href="[% c.uri_for_action('/ref/tree', [p.name, 'HEAD']) %]" title="Tree" class="button tree">tree</a>
14         </td>
15 </tr>
16 [% END %]
17 </tbody>