Added site.css and started work on the commit-related navigation.
[catagits/Gitalist.git] / templates / commit-nav.tt2
1 <div id='commit-nav'>
2     [%# XXX For the record these params are wrong (i.e sha1 will probably be wrong) and the actions don't exist i.e this is a shim -%]
3     [% IF project %]
4     <a href="/summary?p=[% project %]">summary</a> |
5     [% END %]
6     [% IF c.req.param('hb') %]
7     <a href="/shortlog?h=[% c.req.param('hb') %]">shortlog</a> |
8     [% END %]
9     [% IF c.req.param('hb') %]
10     <a href="/log?h=[% c.req.param('hb') %]">log</a> |
11     [% END %]
12     [% IF c.req.param('h') %]
13     <a href="/commit?h=[% c.req.param('h') %]">commit</a> |
14     [% END %]
15     [% IF c.req.param('h') %]
16     <a href="/commitdiff?h=[% c.req.param('h') %]">commitdiff</a> |
17     [% END %]
18     [% IF t %]
19     <a href="/tree?h=[% t %]">tree</a>
20     [% END %]
21 </div>