diff options
author | Mark Wells <mark@freeside.biz> | 2013-06-19 14:56:25 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-06-19 14:56:25 -0700 |
commit | 03dfd875f74410d283060a4e54eaedf845bfcd39 (patch) | |
tree | b798f5bf4de51be5f7a32bf869d54c20d198ec89 /httemplate/search/elements/search-html.html | |
parent | 67e981bedc57f0834bdb43069366e6026c058705 (diff) |
improve accuracy of historical package counts, #8461
Diffstat (limited to 'httemplate/search/elements/search-html.html')
-rw-r--r-- | httemplate/search/elements/search-html.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/search/elements/search-html.html b/httemplate/search/elements/search-html.html index e760bc546..bee33cfe8 100644 --- a/httemplate/search/elements/search-html.html +++ b/httemplate/search/elements/search-html.html @@ -253,6 +253,12 @@ % $bgcolor = $bgcolor1; % } +% my $rowstyle = ''; +% if ( $row eq $opt{'footer_data'} ) { +% $rowstyle = ' STYLE="border-top: dashed 1px black; font-style: italic"'; +% $bgcolor = '#dddddd'; +% } + % my $trid = ''; % if ( $opt{'link_field' } ) { % my $link_field = $opt{'link_field'}; @@ -262,7 +268,7 @@ % $trid = $row->$link_field(); % } % } - <TR ID="<%$trid |h%>"> + <TR ID="<%$trid |h%>"<%$rowstyle%>> % if ( $opt{'fields'} ) { |