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

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