From: Noritada Kobayashi Date: Mon, 22 Oct 2007 06:10:52 +0000 (+0900) Subject: html/show.tmpl: Fix broken links for providers and binaries. X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=eba17e54fcdde2ff5dc79e1a54b46506a49bce58;p=deb%2Fpackages.git html/show.tmpl: Fix broken links for providers and binaries. This is a follow up to 994eceb69bd5a8865a51e00b3cfb1c7a1f03f78e. --- diff --git a/templates/html/show.tmpl b/templates/html/show.tmpl index 2221593..1b280cf 100644 --- a/templates/html/show.tmpl +++ b/templates/html/show.tmpl @@ -198,7 +198,7 @@ [% FOREACH p IN providers %] [% IF loop.first %]

[% g('Packages providing %s', pkg) %]

[% END %] -
[% IF p.available %][% p.name %][% ELSE; p.name; END %]
+
[% IF p.available %][% p.name %][% ELSE; p.name; END %]
[% IF p.trans_desc.$lang; p.trans_desc.$lang | html; ELSE; p.desc | html; END %]
[% '
' IF loop.last %] [% END %] @@ -207,7 +207,7 @@ [% FOREACH b IN binaries %] [% IF loop.first %]
[% g('The following binary packages are built from this source package:') %]
[% END %] -
[% IF b.available %][% b.name %][% ELSE; b.name; END %]
+
[% IF b.available %][% b.name %][% ELSE; b.name; END %]
[% IF b.trans_desc.$lang; b.trans_desc.$lang | html; ELSE; b.desc | html; END %]
[% '
' IF loop.last %] [% END %]