diff options
author | Remi Collet <fedora@famillecollet.com> | 2010-10-31 18:02:59 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2010-10-31 18:02:59 +0100 |
commit | efc4cbd224958735e5673507c2acd4efe43ffc65 (patch) | |
tree | 3d178d14c4d77d15dcd245d7f0024adb86609737 /smarty | |
parent | 13f5a889da9cd6fcb864ae0b84eb31e4e97a9d10 (diff) |
create TableUpstream class and use it everywhere
Diffstat (limited to 'smarty')
-rw-r--r-- | smarty/templates/rpmphp/rpm.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smarty/templates/rpmphp/rpm.tpl b/smarty/templates/rpmphp/rpm.tpl index 9f9d94f..b0d942f 100644 --- a/smarty/templates/rpmphp/rpm.tpl +++ b/smarty/templates/rpmphp/rpm.tpl @@ -66,7 +66,7 @@ {foreach from=$packages item=p name=plist} <tr class="{if $smarty.foreach.plist.iteration % 2 eq 0}even{else}odd{/if}"> <td> - {$p.name} + <a href="zoom.php?rpm={$p.name}" title="{$p.name}">{$p.name}</a> {if $p.channel} <br/><small>channel: {$p.channel}</small> {/if} |