Provided support for blobdiff legacy URIs.
[catagits/Gitalist.git] / root / fragment / collectionofrepositories.tt2
CommitLineData
066e9aa4 1<tbody class='listing'>
2 [% FOR p IN repositories %]
3 [%- repos_link = c.uri_for_action('/repository/summary', [p.name]) -%]
2155d35a 4<tr class="reposrow">
066e9aa4 5 <td><a class="list" href="[% repos_link %]">[% p.name %]</a></td>
6 <td><a class="list" title="[% p.description %]" href="[% repos_link %]">[% abridged_description(p.description) %]</a></td>
7 <td>[% p.owner %]</td>
8 <td class="time-since">[% time_since(p.last_change) %]</td>
9 <td class="link"><a href="[% repos_link %]">summary</a>
10 | <a href="[% c.uri_for_action('/repository/shortlog', [p.name]) %]">shortlog</a>
d2510bc5 11 | <a href="[% c.uri_for_action('/repository/longlog', [p.name]) %]">log</a>
2980657b 12 | <a href="[% c.uri_for_action('/ref/tree', [p.name, 'HEAD']) %]">tree</a></td>
066e9aa4 13</tr>
14 [% END %]
15</tbody>