From eba17e54fcdde2ff5dc79e1a54b46506a49bce58 Mon Sep 17 00:00:00 2001 From: Noritada Kobayashi Date: Mon, 22 Oct 2007 15:10:52 +0900 Subject: [PATCH] html/show.tmpl: Fix broken links for providers and binaries. This is a follow up to 994eceb69bd5a8865a51e00b3cfb1c7a1f03f78e. --- templates/html/show.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 %] -- 2.39.2