source: server/trunk/web/root/templates/html/distrib/list_release.tt @ 77

Last change on this file since 77 was 47, checked in by nanardon, 14 years ago
  • add section to rpm view
  • Property svn:keywords set to Id
File size: 515 bytes
Line 
1[% FOREACH release = xmlrpc %]
2[% IF loop.first %]
3<ol>
4[% END %]
5<li><a href="[% c.uri_for('/', c.req.path, release) %]">[% release | html %]</a></li>
6[% FOREACH arch = c.forward('/distrib/list', [
7    {
8        'distribution' => dist.distribution,
9        'release' => release,
10    }
11]).sort %]
12[% IF loop.first %]
13<ul>
14[% END %]
15<li>
16<a href="[% c.uri_for('/', c.req.path, release, arch) %]">[% arch | html %]</a>
17</li>
18[% IF loop.last %]
19</ul>
20[% END %]
21[% END %]
22[% IF loop.last %]
23</ol>
24[% END %]
25[% END %]
Note: See TracBrowser for help on using the repository browser.