summaryrefslogtreecommitdiff
path: root/templates/letter_toc.tmpl
blob: a7bf9a160aa9d02ca8407ab3ec65b914f1ee09a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#import templates
#extends templates.skeleton
#def title
Debian Project patch tracking system
#end def
#def body
<h1>Debian Project patch tracking system</h1>
<h2>Packaging patches by index - $idx</h2>
<table class="packagelisting">
<tr>
<th>package</th>
#for $d in $dists
 <th>$d</th>
#end for
</tr>
#for $p in $sorted($pkgs.iterkeys)
<tr>
 <td>
  <a name="$escape_name($p)" />
  <a href="http://packages.debian.org/$p">$p</a>
 </td>
 #for $d in $dists
  <td>
  #if $pkgs[$p].has_key($d)
   <a href="$conf.root_url/package/$p/$pkgs[$p][$d].version">$wrappable_version($pkgs[$p][$d].version)</a>
  #else
   <i>n/a</i>
  #end if
  </td>
 #end for
</tr>
#end for
</table>
#end def